Beispiel #1
0
 public EmployeeController(BanicharnicaContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Beispiel #2
0
 public ManagerController(BanicharnicaContext context)
 {
     this.context = context;
 }
Beispiel #3
0
 public DbInitizlizerService(BanicharnicaContext context)
 {
     this.context = context;
 }
Beispiel #4
0
 public ManagerController(BanicharnicaContext context, IMapper mapper)
 {
     this.context = context;
     this._mapper = mapper;
 }