Exemple #1
0
 public UserController(IUserLeaveService _userLeaveService, IMapper _mapper)
 {
     try
     {
         this._userLeaveService = _userLeaveService;
         this._mapper           = _mapper;
     }
     catch (Exception ex)
     {
         throw;
     }
 }
Exemple #2
0
 public AdminController(IUserLeaveService _userLeaveService)
 {
     this._userLeaveService = _userLeaveService;
 }