public ChildrenController(IChildrenService services, IMapper mapper, ISystemAuditService systemAuditService, IHttpContextAccessor accessor)
 {
     _services           = services;
     _mapper             = mapper;
     _systemAuditService = systemAuditService;
     _accessor           = accessor;
 }
 public FeesController(
     IDeletableEntityRepository <Principal> principalsRepository,
     IChildrenService childrenService,
     IFeesService feesService)
 {
     this.principalsRepository = principalsRepository;
     this.childrenService      = childrenService;
     this.feesService          = feesService;
 }
Exemplo n.º 3
0
 public PersonalInfosController(
     IDeletableEntityRepository <Principal> principalsRepository,
     IDeletableEntityRepository <PersonalInfo> personalInfosRepository,
     IChildrenService childrenService,
     IPersonalInfosService personalInfosService)
 {
     this.principalsRepository    = principalsRepository;
     this.personalInfosRepository = personalInfosRepository;
     this.childrenService         = childrenService;
     this.personalInfosService    = personalInfosService;
 }
Exemplo n.º 4
0
 public ChildrenController(
     ApplicationDbContext dbContext,
     IChildrenService childrenService,
     IDeletableEntityRepository <Principal> principalsRepository,
     IDeletableEntityRepository <Child> childrenRepository)
 {
     this.dbContext            = dbContext;
     this.childrenService      = childrenService;
     this.principalsRepository = principalsRepository;
     this.childrenRepository   = childrenRepository;
 }
 public ProfileController(IProfileService profileService, UserManager <ApplicationUser> userManager, IEnrollmentService enrollmentService, IAppointmentService appointmentService, IClinicianAvailabilityService clinicianAvailabilityService, IChildrenService childrenService, IProfileMatchService profileMatchService, IProfileBankService profileBankService, IProfileHMOService profileHMOService)
 {
     _profileService               = profileService;
     _enrollmentService            = enrollmentService;
     _userManager                  = userManager;
     _appointmentService           = appointmentService;
     _clinicianAvailabilityService = clinicianAvailabilityService;
     _childrenService              = childrenService;
     _profileMatchService          = profileMatchService;
     _profileBankService           = profileBankService;
     _profileHMOService            = profileHMOService;
 }
 public ChildrenController(
     IDeletableEntityRepository <Child> childrenRepository,
     IDeletableEntityRepository <ApplicationUser> usersRepository,
     IGroupsService groupsService,
     ISchoolsService schoolsService,
     IChildrenService childrenService)
 {
     this.childrenRepository = childrenRepository;
     this.usersRepository    = usersRepository;
     this.groupsService      = groupsService;
     this.schoolsService     = schoolsService;
     this.childrenService    = childrenService;
 }
Exemplo n.º 7
0
 public ChildrenFileController(IChildrenService service)
 {
     childrenService = service;
 }
Exemplo n.º 8
0
 public ChildrenController(IChildrenService childrenService) : base(childrenService)
 {
     _childrenService = childrenService;
 }
Exemplo n.º 9
0
 public ChildController(IChildrenService childrenService)
 {
     _childrenService = childrenService;
 }
Exemplo n.º 10
0
 public ChildrenController(IChildrenService _childrenService)
 {
     _childrenService = ChildrenService;
 }
 public ChildrenController(IProfileService profileService, UserManager <ApplicationUser> userManager, IChildrenService childrenService)
 {
     _profileService  = profileService;
     _userManager     = userManager;
     _childrenService = childrenService;
 }