public EnterpriseController(
     IEnterpriseService service,
     IResponseHelper response)
 {
     _service  = service;
     _response = response;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BusinessFacade"/> class.
 /// </summary>
 /// <param name="rosettianService">The triad service.</param>
 /// <param name="enterpriseService">The dpi service.</param>
 /// <param name="errorLoggingService">ErrorLogging service.</param>
 /// <param name="billingClient">Billing client.</param>
 /// <param name="rozFacilityClient">Rosettian Facility client.</param>
 public BusinessFacade(IRosettianService rosettianService, 
     IEnterpriseService enterpriseService, 
     IErrorLoggingService errorLoggingService, 
     IBillingClient billingClient,
     IRosettianFacilityClient rozFacilityClient)
 {
     _enterpriseService = enterpriseService;
     _rosettianService = rosettianService;
     _errorLoggingService = errorLoggingService;
     _billingClient = billingClient;
     _rozFacilityClient = rozFacilityClient;
 }
 public UserController(IMapper mapper, IRoutingService routingService, IUriService uriService, IConfiguration configuration, ICountryService countryService, IEnterpriseService enterpriseService, IRolesService rolesService, IUserService userService, IPasswordService passwordService)
 {
     _mapper            = mapper;
     _routingService    = routingService;
     _uriService        = uriService;
     _userService       = userService;
     _countryService    = countryService;
     _enterpriseService = enterpriseService;
     _rolesService      = rolesService;
     _configuration     = configuration;
     _passwordService   = passwordService;
 }
Пример #4
0
        protected override void LoadViewReferenceData(ProductModel model)
        {
            if (model == null)
            {
                return;
            }
            base.LoadViewReferenceData(model);

            ICatalogService catalogService = ServiceFactory.Instance.GetService <ICatalogService>();

            model.Catalogs = catalogService.SelectAll();

            IEnterpriseService enterpriseService = ServiceFactory.Instance.GetService <IEnterpriseService>();

            model.Owners = enterpriseService.SelectAll();
        }
Пример #5
0
 public PostService(CVManagerDBContext dbContext, IEnterpriseService enterpriseService)
 {
     this._dbContext         = dbContext;
     this._enterpriseService = enterpriseService;
 }
 public EnterpriseController(IEnterpriseService enterpriseService, IMapper mapper, IUriService uriService)
 {
     _enterpriseService = enterpriseService;
     _mapper            = mapper;
     _uriService        = uriService;
 }
 /// <summary>
 /// Enterprise Constructor
 /// </summary>
 /// <param name="enterpriseService"></param>
 public EnterpriseController(IEnterpriseService enterpriseService)
 {
     _enterpriseService = enterpriseService;
 }
 public EnterprisesController(IEnterpriseService enterpriseService, IMapper mapper)
 {
     this.enterpriseService = enterpriseService;
     this.mapper            = mapper;
 }
Пример #9
0
 public CompanyController(IEnterpriseService enterpriseService)
 {
     this._enterpriseService = enterpriseService;
 }
Пример #10
0
 public EnterpriseController(IEnterpriseService service)
 {
     _service = service;
 }
Пример #11
0
 public EnterPriseLoginController(IJWTAuthentication jwtAuthenticationManager, IAcountService acountService, IEnterpriseService enterpriseService)
 {
     this._acountService            = acountService;
     this._jwtAuthenticationManager = jwtAuthenticationManager;
     this._enterpriseService        = enterpriseService;
 }
Пример #12
0
 /// <summary>
 /// Contructor
 /// </summary>
 /// <param name="service"></param>
 public EnterpriseController(IEnterpriseService service) =>
Пример #13
0
 public EnterpriseAppService(IEnterpriseService enterpriseService)
 {
     _enterpriseService = enterpriseService;
 }
Пример #14
0
 public EnterprisesResolver(IMapper mapper, IEnterpriseService service)
 {
     _mapper  = mapper;
     _service = service;
 }
Пример #15
0
 public EnterpriseController(ILogger <EnterpriseController> logger, IMapper mapper,
                             IEnterpriseService baseService)
     : base(logger, mapper, baseService)
 {
 }
Пример #16
0
 public AccountController(IEnterpriseService enterpriseService, IMapper mapper, IAuthService authService)
 {
     _enterpriseService = enterpriseService;
     _mapper            = mapper;
     _authService       = authService;
 }
 public EnterpriseController(IEnterpriseService enterpriseService, IErrorLogService _errorLogService)
 {
     this.enterpriseService = enterpriseService;
     this.errorLogService   = _errorLogService;
 }
Пример #18
0
 /// <summary>
 /// Creating Constructor For EnterpriseServices
 /// </summary>
 /// <param name="enterpriseService"></param>
 public EnterpriseServicesController(IEnterpriseService enterpriseService)
 {
     this.enterpriseService = enterpriseService;
 }
Пример #19
0
 public CarController(ICarService carService, IEnterpriseService enterpriseService)
 {
     this.carService        = carService;
     this.enterpriseService = enterpriseService;
 }