Ejemplo n.º 1
0
 public EmployeesApiController(IEntityListService <EmployeeViewModel> EmployeesData) => _EmployeesData = EmployeesData;
Ejemplo n.º 2
0
 public GoodsController(IEntityListService <GoodsView> goodsService)
 {
     _goodsService = goodsService;
 }
 public EntityListServiceTests()
 {
     _entityListService = new EntityListService(
         new Repository(_dbContext)
         );
 }
Ejemplo n.º 4
0
 public EmployeeController(IEntityListService <EmployeeViewModel> entityListService)
 {
     _entityListService = entityListService;
 }
 public EntityListController(IEntityListService entityListService)
 {
     _entityListService = entityListService;
 }