Exemplo n.º 1
0
 public Engine(
     IAccountService accountService,
     IGovernmentService governmentService,
     IGroupService groupService,
     IReportService reportService,
     IPlotService plotService,
     IDecisionService decisionService,
     IAudienceService audienceService,
     INewsService newsService,
     IRevolutionService revolutionService,
     IScoreService scoreService,
     IEscapeService escapeService,
     IAssassinationService assassinationService,
     ILoanService loanService,
     IWarService warService)
 {
     this.accountService       = accountService;
     this.governmentService    = governmentService;
     this.groupService         = groupService;
     this.reportService        = reportService;
     this.plotService          = plotService;
     this.decisionService      = decisionService;
     this.audienceService      = audienceService;
     this.newsService          = newsService;
     this.revolutionService    = revolutionService;
     this.scoreService         = scoreService;
     this.escapeService        = escapeService;
     this.assassinationService = assassinationService;
     this.loanService          = loanService;
     this.warService           = warService;
 }
Exemplo n.º 2
0
 public PlotController(ApplicationUserManager userManager, IProjectRepository projectRepository,
                       IProjectService projectService, IPlotService plotService, IPlotRepository plotRepository,
                       IExportDataService exportDataService) : base(userManager, projectRepository, projectService, exportDataService)
 {
     _plotService    = plotService;
     _plotRepository = plotRepository;
 }
 public PlotEditViewModel(IPlotService service, IMessageService messageService,
                          IDistrictService districtService, IViewsService viewsService,
                          IRealtorService realtorService, IOwnershipService ownershipService,
                          IDealVariantService dealVariantService, IConditionService conditionalService)
     : base(service, messageService, districtService, realtorService, ownershipService, dealVariantService, conditionalService)
 {
     _ViewsService = viewsService;
 }
Exemplo n.º 4
0
 public PlotListViewModel(IPlotService service, IMessageService messageService,
                          IDistrictService districtService, IRealtorService realtorService,
                          IOwnershipService ownershipService, IDealVariantService dealVariantService, IConditionService conditionService,
                          IExcelService excelService, IWordService wordService,
                          IServiceLocator serviceLocator)
     : base(service, messageService, districtService, realtorService, ownershipService, dealVariantService, conditionService, excelService,
            wordService, serviceLocator)
 {
 }
Exemplo n.º 5
0
 public CalendarAppService(ICalendarService calendarService,
                           UserManager <AppUser> userManager,
                           IMapper mapper,
                           IPlotService plotService,
                           IHttpContextAccessor httpContextAccessor)
 {
     _calendarService = calendarService;
     _plotService     = plotService;
     _mapper          = mapper;
 }
Exemplo n.º 6
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="plotService"></param>
 /// <param name="mapper"></param>
 public PlotAppService(IPlotService plotService,
                       IHttpContextAccessor httpContextAccessor,
                       IMapper mapper, UserManager <AppUser> userManager,
                       IPaymentService paymentService)
 {
     _plotService         = plotService;
     _mapper              = mapper;
     _userManager         = userManager;
     _httpContextAccessor = httpContextAccessor;
     _paymentService      = paymentService;
 }
Exemplo n.º 7
0
 public MobilizationAppService(IMobilizationService mobilizationService,
                               IMapper mapper,
                               IPlotService plotService,
                               IOptions <AppSettings> options,
                               UserManager <AppUser> userManager,
                               IHttpContextAccessor httpContextAccessor)
 {
     _mobilizationService = mobilizationService;
     _mapper              = mapper;
     _userManager         = userManager;
     _httpContextAccessor = httpContextAccessor;
     _setting             = options.Value;
     _plotService         = plotService;
 }
Exemplo n.º 8
0
 public PlotController(
     IProjectRepository projectRepository,
     IProjectService projectService,
     IPlotService plotService,
     IPlotRepository plotRepository,
     IUriService uriService,
     IUserRepository userRepository) : base(projectRepository,
                                            projectService,
                                            userRepository)
 {
     _plotService    = plotService;
     _plotRepository = plotRepository;
     UriService      = uriService;
 }
Exemplo n.º 9
0
 public SubscriptionAppService(ISubscriptionService subscriptionService,
                               IMapper mapper,
                               IOTPService otpService,
                               IPlotService plotService,
                               IHttpContextAccessor httpContextAccessor,
                               UserManager <AppUser> userManager)
 {
     _subscriptionService = subscriptionService;
     _mapper = mapper;
     _httpContextAccessor = httpContextAccessor;
     _userManager         = userManager;
     _otpService          = otpService;
     _plotService         = plotService;
 }
Exemplo n.º 10
0
 public WorkOrderAppService(IWorkOrderService workOrderService,
                            UserManager <AppUser> userManager,
                            IMapper mapper,
                            IOptions <AppSettings> options,
                            IPlotService plotService,
                            IHttpContextAccessor httpContextAccessor)
 {
     _workOrderService    = workOrderService;
     _mapper              = mapper;
     _httpContextAccessor = httpContextAccessor;
     _userManager         = userManager;
     _settings            = options.Value;
     _plotService         = plotService;
 }
Exemplo n.º 11
0
 public DocumentAppService(IDocumentService documentService,
                           IMapper mapper,
                           IPlotService plotService,
                           IOptions <AppSettings> options,
                           IHttpContextAccessor httpContextAccessor,
                           UserManager <AppUser> userManager)
 {
     _documentService     = documentService;
     _mapper              = mapper;
     _httpContextAccessor = httpContextAccessor;
     _userManager         = userManager;
     _settings            = options.Value;
     _plotService         = plotService;
 }
Exemplo n.º 12
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="paymentService"></param>
 /// <param name="subscriptionAppService"></param>
 /// <param name="mapper"></param>
 public PaymentAppService(IPaymentService paymentService,
                          ISubscriptionAppService subscriptionAppService,
                          INotificationAppService notificationAppService,
                          IPlotService plotService,
                          IOptions <AppSettings> options,
                          IUserService userService,
                          IMapper mapper) : base()
 {
     _paymentService         = paymentService;
     _mapper                 = mapper;
     _subscriptionAppService = subscriptionAppService;
     _notificationAppService = notificationAppService;
     _plotService            = plotService;
     _settings               = options.Value;
     _userService            = userService;
 }
Exemplo n.º 13
0
 private void CreateServices()
 {
     dealVariantService = _serviceLocator.GetInstance <DealVariantService>();
     districtService    = _serviceLocator.GetInstance <IDistrictService>();
     floorLevelService  = _serviceLocator.GetInstance <IFloorLevelService>();
     layoutService      = _serviceLocator.GetInstance <ILayoutService>();
     materialService    = _serviceLocator.GetInstance <IMaterialService>();
     ownershipService   = _serviceLocator.GetInstance <IOwnershipService>();
     realtorService     = _serviceLocator.GetInstance <IRealtorService>();
     sewageService      = _serviceLocator.GetInstance <ISewageService>();
     streetService      = _serviceLocator.GetInstance <IStreetService>();
     terraceService     = _serviceLocator.GetInstance <ITerraceService>();
     toiletTypeService  = _serviceLocator.GetInstance <IToiletTypeService>();
     waterSupplyService = _serviceLocator.GetInstance <IWaterSupplyService>();
     flatService        = _serviceLocator.GetInstance <IFlatService>();
     houseService       = _serviceLocator.GetInstance <IHouseService>();
     plotService        = _serviceLocator.GetInstance <IPlotService>();
     residenceService   = _serviceLocator.GetInstance <IResidenceService>();
     roomService        = _serviceLocator.GetInstance <IRoomService>();
 }
Exemplo n.º 14
0
 public PlotController(IPlotService service)
 {
     _service = service;
 }
Exemplo n.º 15
0
 public PlotController(IPlotService plotService)
 {
     this.plotService = plotService;
 }