Esempio n. 1
0
 public LeaveApproverController(ILeaveRequestViewService leaveRequestViewService, IConfiguration rfc, ILeaveApprovalService leaveApprovalService, ISMSUtility SMSUtility, IHostingEnvironment hostingEnvironment, ILogger <LeaveApproverController> logger)
 {
     _ILeaveRequestViewService = leaveRequestViewService;
     _rfcconfig             = rfc;
     _iLeaveapprovalService = leaveApprovalService;
     _SMSUtility            = SMSUtility;
     _hostingEnvironment    = hostingEnvironment;
     _logger = logger;
 }
Esempio n. 2
0
 public LeaveHistoryController(IOptions <MySettingsModel> app, ILeaveHistoryService leaveHistoryService, ILeaveRequestViewService leaveRequestViewService, ILogger <LeaveHistoryController> logger, IConfiguration rfc)
 {
     appSettings = app;
     ApplicationSettings.WebApiUrl = appSettings.Value.WebApiBaseUrl;
     _ILeaveHistoryService         = leaveHistoryService;
     _ILeaveRequestViewService     = leaveRequestViewService;
     _logger    = logger;
     _rfcconfig = rfc;
 }
Esempio n. 3
0
 public LeaveWithdrawalController(IOptions <MySettingsModel> app, ILeaveWithdrawalService leaveWithdrawalService, ILeaveRequestViewService leaveRequestViewService, ISMSUtility SMSUtility, ILogger <LeaveQuotaController> logger, IConfiguration rfc)
 {
     appSettings = app;
     ApplicationSettings.WebApiUrl = appSettings.Value.WebApiBaseUrl;
     _iLeavewithdrawalService      = leaveWithdrawalService;
     _ILeaveRequestViewService     = leaveRequestViewService;
     _SMSUtility = SMSUtility;
     _logger     = logger;
     _rfcconfig  = rfc;
 }
Esempio n. 4
0
 public LeaveController(IOptions <MySettingsModel> app, IDeptLeaveRequestViewService DeptleaveRequestViewService, IConfiguration rfc, ILeaveRequestViewService leaveRequestViewService, ISMSUtility smsutility, ILogger <LeaveController> logger)
 {
     appSettings = app;
     ApplicationSettings.WebApiUrl = appSettings.Value.WebApiBaseUrl;
     _rfcconfig = rfc;
     _IDeptLeaveRequestViewService = DeptleaveRequestViewService;
     _ILeaveRequestViewService     = leaveRequestViewService;
     _SMSUtility = smsutility;
     _logger     = logger;
 }