Пример #1
0
 public EditModalModel(IIdentityUserAppService identityUserAppService,
                       IUserDepartmentAppService userDepartmentAppService,
                       IDepartmentAppService departmentAppService)
 {
     IdentityUserAppService   = identityUserAppService;
     UserDepartmentAppService = userDepartmentAppService;
     DepartmentAppService     = departmentAppService;
 }
Пример #2
0
 public OrgController(IMemoryCache cache, IMapper mapper,
                      IDepartmentAppService departmentAppService, IPositionAppService positionAppService,
                      IEmployeeAppService employeeAppService)
     : base(cache, mapper, departmentAppService, positionAppService)
 {
     _employeeAppService = employeeAppService;
     _logger             = Log.ForContext <OrgController>();
 }
Пример #3
0
 public UserController(IUserAppService service, IDepartmentAppService departmentservice, IVerifyTokenAppService verifyTokenAppService, IHttpContextAccessor httpContextAccesor, IHttpClientFactory clientFactory)
     : base(clientFactory)
 {
     _service               = service;
     _departmentservice     = departmentservice;
     _verifyTokenAppService = verifyTokenAppService;
     _httpContextAccesor    = httpContextAccesor;
 }
Пример #4
0
 public BillController(IClientAppService clientAppService, IExchangeObjectAppService exchangeObjectAppService, IDepartmentAppService departmentAppService, IPlaceAppService placeAppService, IBillAppService billAppService)
 {
     _clientAppService         = clientAppService;
     _exchangeObjectAppService = exchangeObjectAppService;
     _departmentAppService     = departmentAppService;
     _placeAppService          = placeAppService;
     _billAppService           = billAppService;
 }
Пример #5
0
 public LetterController(ILetterAppService letterAppService, IDepartmentAppService departmentAppService, IGroupAppService groupAppService, IUserAppService userAppService, IClientAppService clientAppService, IPlaceAppService placeAppService)
 {
     _letterAppService     = letterAppService;
     _departmentAppService = departmentAppService;
     _groupAppService      = groupAppService;
     _userAppService       = userAppService;
     _clientAppService     = clientAppService;
     _placeAppService      = placeAppService;
 }
Пример #6
0
 public OtherController(ILogger <OtherController> logger, IDepartmentAppService departmentAppService, IBarcodeAppService barcodeAppService, ISerialNumberAppService serialNumberAppService, ILetterAppService letterAppService, IDepartmentRepository departmentRepository)
 {
     _logger = logger;
     _departmentAppService   = departmentAppService;
     _barcodeAppService      = barcodeAppService;
     _serialNumberAppService = serialNumberAppService;
     _letterAppService       = letterAppService;
     _departmentRepository   = departmentRepository;
 }
Пример #7
0
 public HomeController(IArticleAppService articleAppService, ILogger <HomeController> Iogger, IUserAppService service, IStringLocalizer <HomeController> localizer, IServiceProvider serviceProvider, IDepartmentAppService departmentAppService)
 {
     logger                = Iogger;
     _service              = service;
     _localizer            = localizer;
     _serviceProvider      = serviceProvider;
     _departmentAppService = departmentAppService;
     _articleService       = articleAppService;
 }
Пример #8
0
 public TheBaseController(
     IMemoryCache cache,
     IMapper mapper,
     IDepartmentAppService departmentAppService,
     IPositionAppService positionAppService
     )
 {
     _cache  = cache;
     _mapper = mapper;
     _departmentAppService = departmentAppService;
     _positionAppService   = positionAppService;
 }
Пример #9
0
 public UserController(IUserAppService userAppService,
                       IRoleAppService roleAppService,
                       IMenuAppService menuAppService,
                       IDepartmentAppService departmentAppService,
                       IUserRepository userRepository)
 {
     _departmentAppService = departmentAppService;
     _userAppService       = userAppService;
     _roleAppService       = roleAppService;
     _menuAppService       = menuAppService;
     _userRepository       = userRepository;
 }
Пример #10
0
 public AdminController(IDepartmentAppService departmentAppService, IFunctionAppService functionAppService,
                        IUserAppService userService, IModulesAppService modulesService, IRoleAppService roleAppService,
                        IIconAppService iconAppService, IAppVersionAppService appVersionAppService,
                        IDistrictAppService districtAppService)
 {
     _userService          = userService;
     _modulesService       = modulesService;
     _roleAppService       = roleAppService;
     _functionAppService   = functionAppService;
     _departmentAppService = departmentAppService;
     _iconAppService       = iconAppService;
     //_iconTypeAppService = iconTypeAppService;
     _appVersionAppService = appVersionAppService;
     _districtAppService   = districtAppService;
 }
Пример #11
0
 public EmployeeController(IMemoryCache cache, IMapper mapper,
                           IDepartmentAppService departmentAppService, IPositionAppService positionAppService,
                           IEmployeeAppService employeeAppService,
                           IGroupAppService groupAppService,
                           Func <Guid, IUserFavoriteAppService> userFavoriteAppServiceFactory,
                           Func <Guid, IUserSettingAppService> userSettingAppServiceFactory
                           )
     : base(cache, mapper, departmentAppService, positionAppService)
 {
     _employeeAppService            = employeeAppService;
     _groupAppService               = groupAppService;
     _userFavoriteAppServiceFactory = userFavoriteAppServiceFactory;
     _userSettingAppServiceFactory  = userSettingAppServiceFactory;
     _logger = Log.ForContext <EmployeeController>();
 }
Пример #12
0
 public GroupFileController(IControlAppService controlAppService,
                            IEmployeeCacheService employeeCacheService,
                            IGroupAppService groupAppService,
                            IDepartmentAppService departmentAppService,
                            IMemoryCache cache,
                            Func <string, IAttachmentAppService> attachmentAppServiceFactory,
                            Func <Guid, IConversationMsgAppService> conversationMsgAppServiceFactory)
 {
     _groupFileControlApp              = controlAppService;
     _attachmentAppServiceFactory      = attachmentAppServiceFactory;
     _groupAppService                  = groupAppService;
     _conversationMsgAppServiceFactory = conversationMsgAppServiceFactory;
     _cache  = cache;
     _logger = Log.ForContext <GroupFileController>();
     _departmentAppService = departmentAppService;
     _employeeCacheService = employeeCacheService;
 }
Пример #13
0
 public InstantMessageController(
     IConversationCtrlAppService conversationCtrlAppService,
     Func <Guid, IConversationMsgAppService> conversationMsgAppServiceFactory,
     Func <Task <IEnumerable <IConversationMsgAppService> > > allConversationMsgAppServiceFactory,
     IEmployeeCacheService employeeMappingService,
     IGroupAppService groupAppService,
     IDepartmentAppService departmentAppService
     )
 {
     _conversationCtrlAppService       = conversationCtrlAppService;
     _conversationMsgAppServiceFactory = conversationMsgAppServiceFactory;
     _logger = Log.ForContext <InstantMessageController>();
     _allConversationMsgAppServiceFactory = allConversationMsgAppServiceFactory;
     _employeeMappingService = employeeMappingService;
     _groupAppService        = groupAppService;
     _departmentAppService   = departmentAppService;
 }
 public DocumentEmailSenderService(
     IMailKitSmtpEmailSender emailSender,
     ICurrentUser currentUser,
     IHostingEnvironment hostingEnvironment,
     ISmtpEmailSenderConfiguration smtpEmailSenderConfiguration,
     IConfiguration configuration,
     IIdentityUserAppService identityUserAppService,
     IDepartmentAppService departmentAppService
     )
 {
     _emailSender                  = emailSender;
     _currentUser                  = currentUser;
     _hostingEnvironment           = hostingEnvironment;
     _smtpEmailSenderConfiguration = smtpEmailSenderConfiguration;
     _configuration                = configuration;
     _identityUserAppService       = identityUserAppService;
     _departmentAppService         = departmentAppService;
 }
 public MasterInformationController(
     IProjInfoAppService _projInfoService,
     IBranchAppService _brInfoService,
     IDepartmentAppService _departmentService,
     IDesignationAppService _designationService,
     IUnitInfoAppService _unitInfoService,
     IBankInfoAppService _bankInfoService,
     IMasterFormAppService _masterFormService,
     IDynaCapAppService _dynaCapService,
     ITransactionLogAppService _transactionLogService,
     ILocationAppService _LocationService
     )
 {
     this._projInfoService       = _projInfoService;
     this._brInfoService         = _brInfoService;
     this._departmentService     = _departmentService;
     this._designationService    = _designationService;
     this._unitInfoService       = _unitInfoService;
     this._bankInfoService       = _bankInfoService;
     this._masterFormService     = _masterFormService;
     this._dynaCapService        = _dynaCapService;
     this._transactionLogService = _transactionLogService;
     this._LocationService       = _LocationService;
 }
Пример #16
0
 public DepartmentController(IDepartmentAppService service, IHttpClientFactory clientFactory)
     : base(clientFactory)
 {
     _service = service;
 }
Пример #17
0
 public UserController(IUserAppService userAppService, IDepartmentAppService departmentAppService, IRoleAppService roleAppService)
 {
     _userAppService       = userAppService;
     _departmentAppService = departmentAppService;
     _roleAppService       = roleAppService;
 }
Пример #18
0
 public DepartmentController(IDepartmentAppService <DepartmentDto> departmentAppService)
 {
     _departmentAppService = departmentAppService;
 }
Пример #19
0
 public UserController(IUserAppService UserAppService, IDepartmentAppService departmentAppService)
 {
     _departmentAppService = departmentAppService;
     _UserAppService       = UserAppService;
 }
 public ExchangeObjectController(IChannelAppService channelAppService, IExchangeObjectAppService exchangeObjectAppService, IDepartmentAppService departmentAppService,
                                 IUserAppService userAppService)
 {
     _channelAppService        = channelAppService;
     _exchangeObjectAppService = exchangeObjectAppService;
     _departmentAppService     = departmentAppService;
     _userAppService           = userAppService;
 }
Пример #21
0
 public DepartmentController(IMemoryCache cache, IMapper mapper, IDepartmentAppService departmentAppService, IPositionAppService positionAppService)
     : base(cache, mapper, departmentAppService, positionAppService)
 {
     _logger = Log.ForContext <DepartmentController>();
 }
Пример #22
0
 public DepartmentApiService(IDepartmentAppService departmentAppService)
 {
     _departmentAppService = departmentAppService;
 }
Пример #23
0
 public DepartmentController(IDepartmentAppService service)
 {
     _service = service;
 }
Пример #24
0
 public DepartmentInstructorController(IDepartmentInstructorAppService departmentInstructorAppService, IDepartmentAppService departmentAppService, IInstructorAppService instructorAppService)
 {
     _departmentInstructorAppService = departmentInstructorAppService;
     _departmentAppService           = departmentAppService;
     _instructorAppService           = instructorAppService;
 }
Пример #25
0
 public DepartmentsAppService_Tests()
 {
     _departmentAppService = Resolve <IDepartmentAppService>();
 }
Пример #26
0
 public EditModalModel(IDepartmentAppService departmentAppService)
 {
     DepartmentAppService = departmentAppService;
 }
Пример #27
0
 public DepartmentController(IDepartmentAppService appService, IRoleAppService appRoleService)
 {
     _appService     = appService;
     _appRoleService = appRoleService;
 }
Пример #28
0
 public DepartmentController(IDepartmentAppService departmentAppService, ILogger <DepartmentController> logger)
 {
     _logger = logger;
     _departmentAppService = departmentAppService;
 }
Пример #29
0
 public GroupController(IGroupAppService groupAppService, IDepartmentAppService departmentAppService)
 {
     _groupAppService      = groupAppService;
     _departmentAppService = departmentAppService;
 }
Пример #30
0
 public DepartmentController(IDepartmentAppService service)
 {
     _service = service;
 }
Пример #31
0
 public DepartmentController(IDepartmentAppService service, ITerminalAppService terminalservice, IStringLocalizer <SharedResource> localizer) : base(localizer)
 {
     _service         = service;
     _terminalservice = terminalservice;
 }