namespace Comal.Classes { public interface ISupplierStatus { string Code { get; set; } string Description { get; set; } bool Active { get; set; } } }