public CreateBathingModel(IBathingsService bathingsService,
                           IBabiesService babiesService)
 {
     this.bathingsService = bathingsService;
     this.babiesService   = babiesService;
 }
Esempio n. 2
0
 public BabiesController(IBabiesService babiesService)
 {
     this.babiesService = babiesService;
 }
Esempio n. 3
0
 public IndexFeedingModel(IFeedingsService feedingsService,
                          IBabiesService babiesService)
 {
     this.feedingsService = feedingsService;
     this.babiesService   = babiesService;
 }
Esempio n. 4
0
 public BabyProfileModel(IBabiesService babiesService,
                         UserManager <User> userManager)
 {
     this.babiesService = babiesService;
     this.userManager   = userManager;
 }
 public IndexBathingModel(IBathingsService bathingsService,
                          IBabiesService babiesService)
 {
     this.bathingsService = bathingsService;
     this.babiesService   = babiesService;
 }
Esempio n. 6
0
 public CreateBabyModel(IBabiesService babiesService,
                        UserManager <User> userManager)
 {
     this.babiesService = babiesService;
     this.userManager   = userManager;
 }
 public CreateDiaperChangeModel(IDiaperChangesService diaperChangesService,
                                IBabiesService babiesService)
 {
     this.diaperChangesService = diaperChangesService;
     this.babiesService        = babiesService;
 }
Esempio n. 8
0
 public DeleteBabyModel(IBabiesService babiesService)
 {
     this.babiesService = babiesService;
 }
 public CreateSleepingModel(ISleepingsService sleepingsService,
                            IBabiesService babiesService)
 {
     this.sleepingsService = sleepingsService;
     this.babiesService    = babiesService;
 }