public DeleteModel(EmployeeApplication.Models.EmployeeContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public IndexModel(EmployeeApplication.Models.EmployeeContext context)
 {
     _context = context;
 }
 public CreateModel(EmployeeApplication.Models.EmployeeContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }