Beispiel #1
0
        //public HomeController() { }

        public HomeController(IOfficeLocationService officeLocationService, ITransportService transportService, IArticleService articleService) 
        {
            _transportService = transportService;
            _officeLocationService = officeLocationService;
            _articleService = articleService;

            //Enforce.NotNull(() => officeLocationService);
        }
Beispiel #2
0
 public OfferPrepFormController(IAgentService AgentService, ICustomerService CustomerService, IUserService UserService, IRoleService RoleService, IFormService FormService, IRoleDetailService RoleDetailService, IRoleService _RoleService, IUserRoleService UserroleService, IOfferPrepFormService OfferPrepFormService, IChattelsTypesServices ChattelsTypesServices, IClauseTypeServices ClauseTypeServices, IOfficeLocationService OfficeLocationService, ILeaseFormService LeaseFormService)
     : base(CustomerService, UserService, RoleService, FormService, RoleDetailService, UserroleService)
 {
     this._CustomerService       = CustomerService;
     this._OfferPrepFormService  = OfferPrepFormService;
     this._LeaseFormService      = LeaseFormService;
     this._ChattelsTypesServices = ChattelsTypesServices;
     this._ClauseTypeServices    = ClauseTypeServices;
     this._OfficeLocationService = OfficeLocationService;
 }
        public CustomerController(INotification Notification, IAgentService AgentService, IEventCustomerService EventCustomerService, IEventService EventService, ITipService TipService, IPropertyService PropertyService, IPropertyImageService PropertyImageService, IFeedBackService FeedBackService, ICompanyService CompanyService, ICountryService CountryService, IStateService StateService, ICityService CityService, IOfficeLocationService OfficeLocationService, ICustomerService CustomerService, IUserService UserService, IFormService FormService, IRoleDetailService RoleDetailService, IRoleService RoleService, IUserRoleService UserRoleService)
            : base(CustomerService, UserService, RoleService, FormService, RoleDetailService, UserRoleService)
        {
            this._Notification          = Notification;
            this._CustomerService       = CustomerService;
            this._UserService           = UserService;
            this._UserRoleService       = UserRoleService;
            this._OfficeLocationService = OfficeLocationService;
            this._CompanyService        = CompanyService;
            this._CountryService        = CountryService;
            this._StateService          = StateService;
            this._CityService           = CityService;

            this._AgentService         = AgentService;
            this._EventCustomerService = EventCustomerService;
            this._EventService         = EventService;
            this._CountryService       = CountryService;
            this._TipService           = TipService;
            this._PropertyService      = PropertyService;
            this._PropertyImageService = PropertyImageService;
        }
        public AdminController(IAgentService AgentService, IEventCustomerService EventCustomerService, IEventService EventService, ITipService TipService, IPropertyService PropertyService, IPropertyImageService PropertyImageService, IFeedBackService FeedBackService, ICompanyService CompanyService, ICountryService CountryService, IStateService StateService, ICityService CityService, IOfficeLocationService OfficeLocationService, ICustomerService CustomerService, IUserService UserService, IFormService FormService, IRoleDetailService RoleDetailService, IRoleService RoleService, IUserRoleService UserRoleService, IViewsService ViewsService, IBannerService BannerService)
            : base(CustomerService, UserService, RoleService, FormService, RoleDetailService, UserRoleService)
        {
            this._CustomerService       = CustomerService;
            this._UserService           = UserService;
            this._UserRoleService       = UserRoleService;
            this._OfficeLocationService = OfficeLocationService;
            this._CompanyService        = CompanyService;
            this._CountryService        = CountryService;
            this._StateService          = StateService;
            this._CityService           = CityService;

            this._AgentService         = AgentService;
            this._EventCustomerService = EventCustomerService;
            this._EventService         = EventService;
            this._CountryService       = CountryService;
            this._TipService           = TipService;
            this._PropertyService      = PropertyService;
            this._PropertyImageService = PropertyImageService;
            this._ViewsService         = ViewsService;
            this._FeedBackService      = FeedBackService;
            this._BannerService        = BannerService;
            //
        }
Beispiel #5
0
 public OfficeLocationController(IOfficeLocationService olocationService, ILogger <OfficeLocationController> logger)
 {
     locationService = olocationService;
     this.logger     = logger;
 }