public CcgMembersController()
 {
     _service          = new CcgMembersService(base.unitOfWork);
     _photoService     = new MemberPhotoService(base.unitOfWork);
     _phoneCallService = new PhoneCallService(base.unitOfWork);
     _ccgService       = new CCGService(base.unitOfWork);
 }
 public PrayerRequestController()
 {
     _service    = new PrayerRequestService(base.unitOfWork);
     _ccgService = new CCGService(base.unitOfWork);
 }
 public CcgAppUsersController()
 {
     _service    = new CcgAppUsersService(base.unitOfWork);
     _ccgService = new CCGService(base.unitOfWork);
 }
 public CCGController()
 {
     _service = new CCGService(unitOfWork);
 }
Exemplo n.º 5
0
 public ContactRecordsController()
 {
     _service    = new ContactRecordsService(unitOfWork);
     _ccgService = new CCGService(unitOfWork);
 }