public RolesLookupController(IReadRepo <Role> r)
 {
     this.r = r;
 }
 public RolesLookupController(IReadRepo<Role> r)
 {
     this.r = r;
 }
Beispiel #3
0
 public GetAllRestaurantsQueryHandler(IReadRepo <Restaurant> repository)
 {
     _repo = repository;
 }
Beispiel #4
0
 public EmployeeDataStore(IWriteRepo writeRepo, IReadRepo readRepo)
 {
     // forks IEmployeeDataStore into a read repo and write repo
     _writeRepo = writeRepo;
     _readRepo  = readRepo;
 }