public CcgMembersController()
 {
     _service          = new CcgMembersService(base.unitOfWork);
     _photoService     = new MemberPhotoService(base.unitOfWork);
     _phoneCallService = new PhoneCallService(base.unitOfWork);
     _ccgService       = new CCGService(base.unitOfWork);
 }
Ejemplo n.º 2
0
 public BulkContactController()
 {
     _service        = new BulkContactService(base.unitOfWork);
     _membersService = new CcgMembersService(base.unitOfWork);
 }
Ejemplo n.º 3
0
 public ExportDataController()
 {
     _service               = new ExportDataService(unitOfWork);
     _membersService        = new CcgMembersService(unitOfWork);
     _contactRecordsService = new ContactRecordsService(unitOfWork);
 }
 public ChangeRequestsController()
 {
     _service = new CcgMembersService(base.unitOfWork);
 }
Ejemplo n.º 5
0
 public static bool IsPhoneNumberFormatted(string number)
 {
     return(string.IsNullOrEmpty(CcgMembersService.ValidatePhoneNumber(number)));
 }