public SectionsController(IFishFarmRepository repo, IStringLocalizer <SharedResource> stringLocalizer)
 {
     _repository      = repo;
     _stringLocalizer = stringLocalizer;
 }
 public MeasurmentUnitsController(IFishFarmRepository repo, IStringLocalizer <SharedResource> stringLocalizer)
 {
     _repository      = repo;
     _stringLocalizer = stringLocalizer;
 }
Beispiel #3
0
 public ContactsController(IFishFarmRepository repo)
 {
     _repository = repo;
 }
 public TanksController(IFishFarmRepository repository, IStringLocalizer <SharedResource> stringLocalizer)
 {
     _repository      = repository;
     _stringLocalizer = stringLocalizer;
 }