Ejemplo n.º 1
0
 public List <ProductModel> GetProducts()
 {
     return(_catalog.GetResults <ProductModel>(GetMapper(), null, "pa_crear_productos"));
 }
Ejemplo n.º 2
0
 public List <CategoryModel> GetCategories()
 {
     return(_catalog.GetResults <CategoryModel>(GetMapper(), null, "pa_categorias"));
 }
Ejemplo n.º 3
0
 public List <UserModel> GetUsers()
 {
     return(_catalog.GetResults <UserModel>(GetMapper(), null, "pa_usuarios"));
 }
Ejemplo n.º 4
0
 public List <BrandModel> GetBrands()
 {
     return(_catalog.GetResults <BrandModel>(GetMapper(), null, "pa_marcas"));
 }
Ejemplo n.º 5
0
 public List <Models.Catalogs.Model> GetModels()
 {
     return(_catalog.GetResults <Models.Catalogs.Model>(GetMapper(), null, "pa_modelos"));
 }
Ejemplo n.º 6
0
 public List <TypeInvoiceModel> GetTypesInvoices()
 {
     return(_catalog.GetResults <TypeInvoiceModel>(GetMapper(), null, "pa_tipo_factura"));
 }
Ejemplo n.º 7
0
 public List <SaleModel> GetProducts()
 {
     return(_catalog.GetResults <SaleModel>(GetMapper(), null, "pa_factura"));
 }
Ejemplo n.º 8
0
 public List <PaymentMethodModel> GetPaymentMethods()
 {
     return(_catalog.GetResults <PaymentMethodModel>(GetMapper(), null, "pa_forma_pago"));
 }