public SupplierController(INorthwindGenericApplicationDTO <SupplierDTO, Supplier> application)
 {
     Application = application;
 }
 public EmployeeController(INorthwindGenericApplicationDTO <EmployeeDTO, Employee> application)
 {
     Application = application;
 }
 public CustomerCustomerDemoController(INorthwindGenericApplicationDTO <CustomerCustomerDemoDTO, CustomerCustomerDemo> application)
 {
     Application = application;
 }
 public EmployeeTerritoryController(INorthwindGenericApplicationDTO <EmployeeTerritoryDTO, EmployeeTerritory> application)
 {
     Application = application;
 }
Ejemplo n.º 5
0
 public CustomerDemographicController(INorthwindGenericApplicationDTO <CustomerDemographicDTO, CustomerDemographic> application)
 {
     Application = application;
 }
 public OrderDetailController(INorthwindGenericApplicationDTO <OrderDetailDTO, OrderDetail> application)
 {
     Application = application;
 }
 public RegionController(INorthwindGenericApplicationDTO <RegionDTO, Region> application)
 {
     Application = application;
 }
Ejemplo n.º 8
0
 public CategoryController(INorthwindGenericApplicationDTO <CategoryDTO, Category> application)
 {
     Application = application;
 }
Ejemplo n.º 9
0
 public TerritoryController(INorthwindGenericApplicationDTO <TerritoryDTO, Territory> application)
 {
     Application = application;
 }
Ejemplo n.º 10
0
 public ProductController(INorthwindGenericApplicationDTO <ProductDTO, Product> application)
 {
     Application = application;
 }