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