コード例 #1
0
 public TaskService(IWM_TaskRepository _WM_TaskRepository, IWM_TaskUserRepository _WM_TaskUserRepository, IOS_PlayerService _OS_PlayerService, ISY_UserRepository _SY_UserRepository)
 {
     this._WM_TaskRepository     = _WM_TaskRepository;
     this._WM_TaskUserRepository = _WM_TaskUserRepository;
     this._OS_PlayerService      = _OS_PlayerService;
     this._SY_UserRepository     = _SY_UserRepository;
 }
コード例 #2
0
 public WM_TaskController(IWM_TaskService _WM_TaskService, ISY_UserService _SY_UserService, IOS_PlayerService _OS_PlayerService, IReminderService _ReminderService, ISY_ReminderSystemService _SY_ReminderSystemService)
 {
     this._WM_TaskService           = _WM_TaskService;
     this._SY_UserService           = _SY_UserService;
     this._OS_PlayerService         = _OS_PlayerService;
     this._ReminderService          = _ReminderService;
     this._SY_ReminderSystemService = _SY_ReminderSystemService;
 }
コード例 #3
0
 public PM_ProjectController(IPM_ProjectService _PM_ProjectService, IPM_ComponentService _PM_ComponentService, IPM_WorkService _PM_WorkService, ISY_UserService _SY_UserService, IOS_PlayerService _OS_PlayerService, IReminderService _ReminderService)
 {
     this._PM_ProjectService   = _PM_ProjectService;
     this._PM_ComponentService = _PM_ComponentService;
     this._PM_WorkService      = _PM_WorkService;
     this._SY_UserService      = _SY_UserService;
     this._OS_PlayerService    = _OS_PlayerService;
     this._ReminderService     = _ReminderService;
 }
コード例 #4
0
        public ProjectService(IPM_ProjectRepository _PM_ProjectRepsotitory, IPM_ComponentRepository _PM_ComponentRepository, IPM_WorkRepository _PM_WorkRepository, IOS_PlayerService _OS_PlayerService, ISY_UserRepository _SY_UserRepository)
        {
            this._PM_ProjectRepsotitory  = _PM_ProjectRepsotitory;
            this._PM_ComponentRepository = _PM_ComponentRepository;
            this._PM_WorkRepository      = _PM_WorkRepository;

            this._OS_PlayerService  = _OS_PlayerService;
            this._SY_UserRepository = _SY_UserRepository;
        }
コード例 #5
0
 public ReminderService(IPM_ProjectRepository _PM_ProjectRepsotitory, IPM_ComponentRepository _PM_ComponentRepository, IPM_WorkRepository _PM_WorkRepository, IWM_TaskRepository _WM_TaskRepository, IWM_TaskUserRepository _WM_TaskUserRepository, IOS_PlayerService _OS_PlayerService, ISY_ReminderSystemRepository _SY_ReminderSystemRepository)
 {
     this._PM_ProjectRepsotitory       = _PM_ProjectRepsotitory;
     this._PM_ComponentRepository      = _PM_ComponentRepository;
     this._PM_WorkRepository           = _PM_WorkRepository;
     this._WM_TaskRepository           = _WM_TaskRepository;
     this._WM_TaskUserRepository       = _WM_TaskUserRepository;
     this._OS_PlayerService            = _OS_PlayerService;
     this._SY_ReminderSystemRepository = _SY_ReminderSystemRepository;
 }
コード例 #6
0
 public SY_NotificationController(ISY_NotificationService _SY_NotificationService, IOS_PlayerService _OS_PlayerService)
 {
     this._SY_NotificationService = _SY_NotificationService;
     this._OS_PlayerService       = _OS_PlayerService;
 }
コード例 #7
0
 public WM_TaskService(IWM_TaskRepository _WM_TaskRepository, IWM_TaskUserRepository _WM_TaskUserRepository, IOS_PlayerService _OS_PlayerService)
 {
     this._WM_TaskRepository     = _WM_TaskRepository;
     this._WM_TaskUserRepository = _WM_TaskUserRepository;
     this._OS_PlayerService      = _OS_PlayerService;
 }
コード例 #8
0
ファイル: AuthService.cs プロジェクト: vantuan96/WorkManage
 public AuthService(ISY_UserRepository _SY_UserRepository, IOS_PlayerService _OS_PlayerService)
 {
     this._SY_UserRepository = _SY_UserRepository;
     this._OS_PlayerService  = _OS_PlayerService;
 }