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