Example #1
0
        //public FileUpload(IWebHostEnvironment env)
        //{
        //    _env = env;
        //}

        public BooksController(iBookRepository BookRepository, ILoggerServices logger, IMapper mapper, IWebHostEnvironment env)
        {
            _bookRepository = BookRepository;
            _logger         = logger;
            _mapper         = mapper;
            _env            = env;
        }
 public UsersController(SignInManager <IdentityUser> signInManager, UserManager <IdentityUser> userManager, ILoggerServices logger, IConfiguration configuration)
 {
     _signInManager = signInManager;
     _userManager   = userManager;
     _logger        = logger;
     _config        = configuration;
 }
Example #3
0
 public AuthorsController(IAuthorRepository authorRepository, ILoggerServices logger,
                          IMapper map)
 {
     _authorRepository = authorRepository;
     _logger           = logger;
     _map = map;
 }
 public SettingsService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, ISettingsRepository settingsRepository)
 {
     _loggerServices        = loggerServices;
     _dbContextScopeFactory = dbContextScopeFactory;
     _settingsRepository    = settingsRepository;
     _mapper = mapper;
 }
 public FirebaseServices(IUserDeviceServices userDeviceServices,
                         ILoggerServices loggerServices)
 {
     _userDeviceServices = userDeviceServices;
     _loggerServices     = loggerServices;
     CreateFirebaseApp();
 }
 public BooksController(IBookRepository bookRepository, ILoggerServices logger,
                        IMapper map)
 {
     _bookRepository = bookRepository;
     _logger         = logger;
     _map            = map;
 }
 public ApiCoreController(ILoggerServices loggerServices, IUserServices userService,
                          IUserDepartmentServices userDepartmentServices)
 {
     _loggerServices         = loggerServices;
     _userService            = userService;
     _userDepartmentServices = userDepartmentServices;
 }
Example #8
0
 public UserDelegationService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, IUserDelegationRepository objectRepository, IUserServices userServices)
 {
     _loggerServices        = loggerServices;
     _dbContextScopeFactory = dbContextScopeFactory;
     _objectRepository      = objectRepository;
     _mapper       = mapper;
     _userServices = userServices;
 }
Example #9
0
 public UsersController(SignInManager <IdentityUser> _signInManeger, UserManager <IdentityUser> _userManeger,
                        ILoggerServices _logger, IConfiguration _configuration)
 {
     signInManeger = _signInManeger;
     userManeger   = _userManeger;
     logger        = _logger;
     configuration = _configuration;
 }
Example #10
0
 public SsoController(ILoggerServices loggerServices, IUserServices userService,
                      IUserDepartmentServices userDepartmentServices,
                      IUserDeviceServices userDeviceServices, IOrgService orgService)
     : base(loggerServices, userService, userDepartmentServices)
 {
     _orgSevice          = orgService;
     _userDeviceServices = userDeviceServices;
 }
Example #11
0
 public TaskItemController(ILoggerServices loggerServices, IUserServices userService, IUserDepartmentServices userDepartmentServices, ITaskItemService taskItemService, IMapper mapper, ICategoryService categoryService, IAttachmentService attachmentService, IProjectService projectService) : base(loggerServices, userService, userDepartmentServices)
 {
     _attachmentService = attachmentService;
     _projectService    = projectService;
     _mapper            = mapper;
     _categoryService   = categoryService;
     _taskItemService   = taskItemService;
 }
 public NotificationController(ILoggerServices loggerServices,
                               IUserServices userService,
                               IUserDepartmentServices userDepartmentServices,
                               INotificationServices notificationServices) :
     base(loggerServices, userService, userDepartmentServices)
 {
     _notificationServices = notificationServices;
 }
Example #13
0
 public TaskItemProcessHistoryService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, IUserServices userServices, ITaskItemProcessHistoryRepository taskItemProcessHistoryRepository)
 {
     _loggerServices        = loggerServices;
     _dbContextScopeFactory = dbContextScopeFactory;
     _mapper = mapper;
     _taskItemProcessHistoryRepository = taskItemProcessHistoryRepository;
     _userServices = userServices;
 }
 public MobileOrgController(ILoggerServices loggerServices,
                            IUserServices userService,
                            IUserDepartmentServices userDepartmentServices,
                            IOrgService orgService) :
     base(loggerServices, userService, userDepartmentServices)
 {
     _orgService = orgService;
 }
 public ProjectFolderService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, IProjectFolderRepository objectRepository, IUserServices userServices)
 {
     _loggerServices        = loggerServices;
     _objectRepository      = objectRepository;
     _dbContextScopeFactory = dbContextScopeFactory;
     _mapper       = mapper;
     _userServices = userServices;
 }
Example #16
0
 public SystemConfigController(
     ILoggerServices loggerServices,
     IUserServices userService,
     IUserDepartmentServices userDepartmentServices,
     ISystemConfigServices systemConfigService
     ) : base(loggerServices, userService, userDepartmentServices)
 {
     _systemConfigService = systemConfigService;
 }
Example #17
0
 public AttachmentService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, IUserServices userServices, IAttachmentRepository attachmentRepository, ITaskItemProcessHistoryService taskItemProcessHistoryService)
 {
     _loggerServices        = loggerServices;
     _dbContextScopeFactory = dbContextScopeFactory;
     _mapper                        = mapper;
     _userServices                  = userServices;
     _attachmentRepository          = attachmentRepository;
     _taskItemProcessHistoryService = taskItemProcessHistoryService;
 }
 public NotificationTypeController(
     ILoggerServices loggerServices,
     IUserServices userService,
     IUserDepartmentServices userDepartmentServices,
     INotificationTypeService notificationTypeService
     ) : base(loggerServices, userService, userDepartmentServices)
 {
     _notificationTypeService = notificationTypeService;
 }
 public ProjectFilterParamService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, IProjectFilterParamRepository objectRepository, IProjectFolderService projectFolderService, IUserServices userServices, IProjectCategoryRepository projectCategoryRepository)
 {
     _loggerServices        = loggerServices;
     _dbContextScopeFactory = dbContextScopeFactory;
     _objectRepository      = objectRepository;
     _projectFolderService  = projectFolderService;
     _mapper       = mapper;
     _userServices = userServices;
     _projectCategoryRepository = projectCategoryRepository;
 }
 public OrgController(ILoggerServices loggerServices,
                      IUserServices userService,
                      IUserDepartmentServices userDepartmentServices,
                      IDepartmentServices departmentServices,
                      IOrgService orgService) :
     base(loggerServices, userService, userDepartmentServices)
 {
     _orgService         = orgService;
     _departmentServices = departmentServices;
 }
 public CommentService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, IUserServices userServices, IAttachmentRepository attachmentRepository, ITaskItemProcessHistoryService taskItemProcessHistoryService, ICommentRepository commentRepository, IFileCommentRepository fileCommentRepository)
 {
     _loggerServices        = loggerServices;
     _dbContextScopeFactory = dbContextScopeFactory;
     _mapper                        = mapper;
     _userServices                  = userServices;
     _commentRepository             = commentRepository;
     _fileCommentRepository         = fileCommentRepository;
     _taskItemProcessHistoryService = taskItemProcessHistoryService;
 }
Example #22
0
 public ApisController(ILoggerServices loggerServices
                       , IUserServices userService
                       , IUserDepartmentServices userDepartmentServices
                       , IProjectService projectService
                       , IMapper mapper
                       ) : base(loggerServices, userService, userDepartmentServices)
 {
     _projectService         = projectService;
     _mapper                 = mapper;
     _userdepartmentServices = userDepartmentServices;
 }
        public void DoAplication(ICreditManager creditManager, ILoggerServices loggerServices)
        {
            // başvuran bilgilerini değerlendirme
            //....


            creditManager.Calculate();


            loggerServices.Log();
        }
Example #24
0
 public TaskItemAssignService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, ITaskItemAssignRepository taskItemAssignRepository, ITaskItemRepository taskItemRepository, IUserServices userServices, IUserDepartmentServices userDepartmentServices, ITaskItemProcessHistoryRepository taskItemProcessHistoryRepository, IAttachmentRepository attachmentRepository)
 {
     _loggerServices        = loggerServices;
     _dbContextScopeFactory = dbContextScopeFactory;
     _mapper                           = mapper;
     _objectRepository                 = taskItemAssignRepository;
     _userServices                     = userServices;
     _userDepartmentServices           = userDepartmentServices;
     _taskItemProcessHistoryRepository = taskItemProcessHistoryRepository;
     _attachmentRepository             = attachmentRepository;
     _taskItemRepository               = taskItemRepository;
 }
Example #25
0
 public MobileSignatureController(ILoggerServices loggerServices,
                                  IUserServices userService,
                                  IUserDepartmentServices userDepartmentServices,
                                  IMapper mapper,
                                  ISignatureServices signatureServices,
                                  INotificationServices notificationServices) :
     base(loggerServices, userService, userDepartmentServices)
 {
     _signatureServices    = signatureServices;
     _mapper               = mapper;
     _notificationServices = notificationServices;
 }
Example #26
0
 public NotificationServices(
     IDbContextScopeFactory dbContextScopeFactory,
     INotificationRepository notificationRepository,
     INotificationSettingRepository notificationSettingRepository,
     IMapper mapper, ISystemConfigServices systemConfigServices, ILoggerServices loggerServices, INotificationTypeService notificationTypeService)
 {
     _dbContextScopeFactory         = dbContextScopeFactory;
     _notificationRepository        = notificationRepository;
     _notificationSettingRepository = notificationSettingRepository;
     _mapper = mapper;
     _systemConfigServices    = systemConfigServices;
     _loggerServices          = loggerServices;
     _notificationTypeService = notificationTypeService;
 }
Example #27
0
 public CategoryService(ILoggerServices loggerServices, IDbContextScopeFactory dbContextScopeFactory, IMapper mapper, ITaskItemCategoryRepository taskItemCategoryRepository, IUserServices userServices, IProjectCategoryRepository projectCategoryRepository, ITaskItemStatusRepository taskItemStatusRepository, ITaskItemPriorityRepository taskItemPriorityRepository, INatureTaskRepository natureTaskRepository, IProjectPriorityRepository projectPriorityRepository, IProjectTypeRepository projectTypeRepository, ISettingsService settingsService, ITaskItemRepository taskItemRepository, IProjectStatusRepository projectStatusRepository)
 {
     _loggerServices             = loggerServices;
     _dbContextScopeFactory      = dbContextScopeFactory;
     _projectCategoryRepository  = projectCategoryRepository;
     _taskItemCategoryRepository = taskItemCategoryRepository;
     _taskItemStatusRepository   = taskItemStatusRepository;
     _taskItemPriorityRepository = taskItemPriorityRepository;
     _natureTaskRepository       = natureTaskRepository;
     _projectPriorityRepository  = projectPriorityRepository;
     _projectTypeRepository      = projectTypeRepository;
     _mapper                  = mapper;
     _userServices            = userServices;
     _settingsService         = settingsService;
     _taskItemRepository      = taskItemRepository;
     _projectStatusRepository = projectStatusRepository;
 }
 public UpdateMedicServices(ILoggerServices logger, IMedicRepository medicRepository)
 {
     _logger          = logger;
     _medicRepository = medicRepository;
 }
Example #29
0
 public HomeController(ILoggerServices logger)
 {
     _logger = logger;
 }
 public BaseTaskController(ILoggerServices loggerServices,
                           IUserServices userService,
                           IUserDepartmentServices userDepartmentServices) : base(loggerServices, userService, userDepartmentServices)
 {
 }