コード例 #1
0
 public EmployeesApiController(IEntityListService <EmployeeViewModel> EmployeesData) => _EmployeesData = EmployeesData;
コード例 #2
0
 public GoodsController(IEntityListService <GoodsView> goodsService)
 {
     _goodsService = goodsService;
 }
コード例 #3
0
 public EntityListServiceTests()
 {
     _entityListService = new EntityListService(
         new Repository(_dbContext)
         );
 }
コード例 #4
0
 public EmployeeController(IEntityListService <EmployeeViewModel> entityListService)
 {
     _entityListService = entityListService;
 }
コード例 #5
0
 public EntityListController(IEntityListService entityListService)
 {
     _entityListService = entityListService;
 }