public CreateBathingModel(IBathingsService bathingsService, IBabiesService babiesService) { this.bathingsService = bathingsService; this.babiesService = babiesService; }
public BabiesController(IBabiesService babiesService) { this.babiesService = babiesService; }
public IndexFeedingModel(IFeedingsService feedingsService, IBabiesService babiesService) { this.feedingsService = feedingsService; this.babiesService = babiesService; }
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; }
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; }
public DeleteBabyModel(IBabiesService babiesService) { this.babiesService = babiesService; }
public CreateSleepingModel(ISleepingsService sleepingsService, IBabiesService babiesService) { this.sleepingsService = sleepingsService; this.babiesService = babiesService; }