Beispiel #1
0
 public OwnerController(UserManager <ApplicationUser> userManager, IOwnersService ownerService, IHubContext <NotificationHub> hubContext, IDogsittersService dogsittersService)
 {
     this.userManager       = userManager;
     this.ownerService      = ownerService;
     this.hubContext        = hubContext;
     this.dogsittersService = dogsittersService;
 }
Beispiel #2
0
 public AppointmentController(IAppointmentsService appointmentsService, INotificationsService notificationsService, IHubContext <NotificationHub> hubContext, IOwnersService ownersService)
 {
     this.appointmentsService  = appointmentsService;
     this.notificationsService = notificationsService;
     this.hubContext           = hubContext;
     this.ownersService        = ownersService;
 }
Beispiel #3
0
 public IndexModel(
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     IDogsittersService dogsitterService,
     IOwnersService ownersService,
     IConfiguration configuration)
 {
     this._userManager     = userManager;
     this._signInManager   = signInManager;
     this.dogsitterService = dogsitterService;
     this.ownersService    = ownersService;
     this.configuration    = configuration;
 }
Beispiel #4
0
 public RegisterOwnerModel(
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     ILogger <RegisterModel> logger,
     IEmailSender emailSender,
     IOwnersService ownerService,
     IConfiguration configuration)
 {
     _userManager       = userManager;
     _signInManager     = signInManager;
     _logger            = logger;
     _emailSender       = emailSender;
     this.ownerService  = ownerService;
     this.configuration = configuration;
 }
Beispiel #5
0
 public OwnersController(IOwnersService ownersService, IMapper mapper)
 {
     this.mapper        = mapper;
     this.ownersService = ownersService;
 }
 public ApartmentController(IApartmentService apartmentService, IOwnersService ownersService, IMapper mapper)
 {
     _apartmentService = apartmentService;
     _ownersService    = ownersService;
     _mapper           = mapper;
 }
Beispiel #7
0
 public OwnersController(IOwnersService ownersService)
 {
     this.ownersService = ownersService;
 }
 public DashboardViewModel(IOwnersService ownersService, IConnectivity connectivityService)
 {
     Pets                 = new ObservableRangeCollection <Pet>();
     _ownersService       = ownersService;
     _connectivityService = connectivityService;
 }