Esempio n. 1
0
 public AccountController(IAccountInformationService accountService,
                          DbContext context)
 {
     _accountService = accountService;
     _context        = context;
     //Data.Entities.Users.Admin admin = new Data.Entities.Users.Admin();
     //admin.
     //_context.Set<Data.Entities.Users.Admin>
 }
Esempio n. 2
0
 public ClientController(ApplicationContext context,
                         IAccountInformationService accountInformationService,
                         IMyCallsAPIService myCallsApiService,
                         IMyCallsAPIServiceAstrics myCallsAPIServiceAstrics)
 {
     _context = context;
     _accountInformationService = accountInformationService;
     _myCallsApiService         = myCallsApiService;
     _myCallsAPIServiceAstrics  = myCallsAPIServiceAstrics;
 }
 public ClientForManagerController(IMonthlyCallService monthlyCallService,
                                   IManagerService managerService,
                                   IMonthlyCallPlanService monthlyCallPlanService,
                                   IAccountInformationService accountInformationService,
                                   IMonthlyBusinessTripService monthlyBusinessTripService,
                                   IWeekPlanService weekPlanService)
 {
     _monthlyCallService         = monthlyCallService;
     _managerService             = managerService;
     _monthlyCallPlanService     = monthlyCallPlanService;
     _accountInformationService  = accountInformationService;
     _monthlyBusinessTripService = monthlyBusinessTripService;
     _weekPlanService            = weekPlanService;
 }
Esempio n. 4
0
 public MasterViewModel(
     IAuthenticationService authenticationService,
     ILoadingService loadingService,
     IDialogService dialogService,
     IAccountInformationService accountInformationService,
     MobileServiceClient mobileServiceClient,
     CachedTableManager <Shift> shiftManager,
     CachedTableManager <DietPaymentItem> dietManager)
 {
     _authenticationService    = authenticationService;
     _loadingService           = loadingService;
     _dialogService            = dialogService;
     _accoutInformationService = accountInformationService;
     _shiftManager             = shiftManager;
     _dietManager         = dietManager;
     _mobileServiceClient = mobileServiceClient;
     LogoutCommand        = new Command(Logout);
 }
 public BusinessTripPlanController(IAccountInformationService accountInformationService,
                                   IMonthlyBusinessTripService monthlyBusinessTripService)
 {
     _accountInformationService  = accountInformationService;
     _monthlyBusinessTripService = monthlyBusinessTripService;
 }
Esempio n. 6
0
 public ClientAcceptController(ApplicationContext context,
                               IAccountInformationService accountInformationService)
 {
     _context = context;
     _accountInformationService = accountInformationService;
 }
Esempio n. 7
0
 public BusinessTripPlanController(ApplicationContext context,
                                   IAccountInformationService accountInformationService)
 {
     _context = context;
     _accountInformationService = accountInformationService;
 }
Esempio n. 8
0
 public ReportController(IAccountInformationService accountService)
 {
     _accountService = accountService;
 }
Esempio n. 9
0
 public ProfileBarViewModel(IAccountInformationService accountInformationService)
 {
     _accountInformationService = accountInformationService;
 }
Esempio n. 10
0
 public ReachOutcomesController(ApplicationContext context,
                                IAccountInformationService accountInformationService)
 {
     _context = context;
     _accountInformationService = accountInformationService;
 }
 public MonthlyCallPlanController(IMonthlyCallPlanService monthlyCallPlanService,
                                  IAccountInformationService accountInformationService)
 {
     _monthlyCallPlanService    = monthlyCallPlanService;
     _accountInformationService = accountInformationService;
 }
Esempio n. 12
0
 public WeekPlanController(IWeekPlanService weekPlanService,
                           IAccountInformationService accountInformationService)
 {
     _weekPlanService           = weekPlanService;
     _accountInformationService = accountInformationService;
 }