Beispiel #1
0
 public MealController(IMealService service, IProMapper mapper, IFileManagerService fileManagerService, ICacheManager cache)
     : base(service, mapper)
 {
     this.service            = service;
     this.fileManagerService = fileManagerService;
     this.cache = cache;
 }
Beispiel #2
0
 public UserController(IProMapper mapper, IUserService service)
     : base(service, mapper)
 {
     this.service = service;
 }
Beispiel #3
0
 public CountryController(ICrudService <Country> service, IProMapper v, ICacheManager cache)
     : base(service, v)
 {
     this.cache = cache;
 }
Beispiel #4
0
 public Crudere(ICrudService <TEntity> service, IProMapper mapper)
 {
     this.service = service;
     this.mapper  = mapper;
 }
Beispiel #5
0
 public HomeController(ICrudService <Dinner> service, IProMapper v, ICacheManager cache) : base(service, v)
 {
     this.cache = cache;
 }
 public CountryController(ICrudService <Country> service, IProMapper v)
     : base(service, v)
 {
 }
Beispiel #7
0
 public DinnerController(ICrudService <Dinner> service, IProMapper mapper, ICacheManager cache)
     : base(service, mapper)
 {
     this.cache = cache;
 }
 public ChefController(ICrudService <Chef> service, IProMapper mapper, IRepo <Chef> chefRepo)
     : base(service, mapper)
 {
     this.chefRepo = chefRepo;
 }
Beispiel #9
0
 public ChefController(ICrudService <Chef> service, IProMapper mapper, IRepo <Chef> chefRepo, ICacheManager cache)
     : base(service, mapper)
 {
     this.chefRepo = chefRepo;
     this.cache    = cache;
 }
Beispiel #10
0
 public void SetUp()
 {
     mapper            = A.Fake <IProMapper>();
     countryCrudSrv    = A.Fake <ICrudService <Country> >();
     countryController = new CountryController(countryCrudSrv, mapper, A.Fake <ICacheManager>());
 }
Beispiel #11
0
 public HomeController(ICrudService <Dinner> service, IProMapper v) : base(service, v)
 {
 }
Beispiel #12
0
 public Cruder(ICrudService <TEntity> service, IProMapper mapper) : base(service, mapper)
 {
 }
Beispiel #13
0
 public DinnerController(ICrudService <Dinner> service, IProMapper mapper)
     : base(service, mapper)
 {
 }
 public CountryInlineEditController(IProMapper mapper, ICrudService <Country> countryService)
 {
     this.mapper         = mapper;
     this.countryService = countryService;
 }