public JobManager(IScheduleRepo schedule, IChatRepo chat,
                   IModelConverter converter)
 {
     this._scheduleRepo = schedule;
     this._chatRepo     = chat;
     this._converter    = converter;
 }
Exemplo n.º 2
0
 /// <summary>UnitOfWorkPerson Constructor</summary>
 public UnitOfWorkPerson(IPersonRepo personRepo, IScheduleRepo scheduleRepo, IClassRepo classRepo, ISemesterRepo semesterRepo, IDepartmentRepo departmentRepo, IBannerService bannerApi)
 {
     this.personRepo     = personRepo;
     this.scheduleRepo   = scheduleRepo;
     this.classRepo      = classRepo;
     this.semesterRepo   = semesterRepo;
     this.departmentRepo = departmentRepo;
     this.bannerApi      = bannerApi;
 }
 public PassengerViewModelService(IPassengerRepo repo,
                                  IUnitOfWork unitOfWork,
                                  IScheduleRepo scheduleRepo,
                                  IAppoinmentRepo appoinmentRepo
                                  )
 {
     _appoinmentRepo = appoinmentRepo;
     _passengerRepo  = repo;
     _unitOfWork     = unitOfWork;
     _scheduleRepo   = scheduleRepo;
 }
Exemplo n.º 4
0
 /// Person Controller Constructor
 public PersonController(IUnitOfWorkPerson unitPerson, IScheduleRepo scheduleRepo)
 {
     this.unitPerson   = unitPerson;
     this.scheduleRepo = scheduleRepo;
 }
Exemplo n.º 5
0
 public ScheduleLogic(IScheduleRepo repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
 public ScheduleController(IScheduleRepo iSchedule)
 {
     this._iSchedule = iSchedule;
 }
Exemplo n.º 7
0
 public SchedulesController(IScheduleRepo repo)
 {
     _repo = repo;
 }
 public ScheduleController(IScheduleRepo scheduleRepo)
 {
     this._scheduleRepo = scheduleRepo;
 }
Exemplo n.º 9
0
 public InventoryManager(IOrderRepo orderRepo, IScheduleRepo scheduleRepo)
 {
     this.orderRepo    = orderRepo;
     this.scheduleRepo = scheduleRepo;
 }