コード例 #1
0
 public List_SendEmail_Handeler(IDapper <List_SendEmail> demoCustomer, ICacheService cache, IBackgroundJob backgroundJob, INotificationMsg notification)
 {
     _query         = demoCustomer;
     _cache         = cache;
     _backgroundJob = backgroundJob;
     _notification  = notification;
 }
コード例 #2
0
 public Right_Del_cmd_Handeler(IDapper <TblRightmaster> rights, INotificationMsg notificationMsg)
 {
     _rights          = rights;
     _notificationMsg = notificationMsg;
 }
コード例 #3
0
 public Role_Inst_cmd_Handeler(IMapper mapper, IDapper <TblRolemaster> roles, INotificationMsg notificationMsg)
 {
     _mapper          = mapper;
     _roles           = roles;
     _notificationMsg = notificationMsg;
 }
コード例 #4
0
 public User_Inst_cmd_Handeler(IMapper mapper, IDapper <TblUsermaster> user, INotificationMsg notificationMsg)
 {
     _mapper          = mapper;
     _user            = user;
     _notificationMsg = notificationMsg;
 }
コード例 #5
0
 public Role_Del_cmd_Handeler(IDapper <TblRolemaster> roles, INotificationMsg notificationMsg)
 {
     _roles           = roles;
     _notificationMsg = notificationMsg;
 }
コード例 #6
0
 public User_Del_cmd_Handeler(IDapper <TblUsermaster> user, INotificationMsg notificationMsg)
 {
     _user            = user;
     _notificationMsg = notificationMsg;
 }
コード例 #7
0
 public Right_Upd_cmd_Handeler(IMapper mapper, IDapper <TblRightmaster> rights, INotificationMsg notificationMsg)
 {
     _mapper          = mapper;
     _rights          = rights;
     _notificationMsg = notificationMsg;
 }