예제 #1
0
 public PictureRepository(INetStatusService netStatusService, FestiMSClient client)
 {
     _uploadQue         = new Queue <KeyValuePair <DrawQuestion, string> >();
     _netStatusService  = netStatusService;
     _client            = client;
     _pictureServiceUrl = AppSettings.Get("geordistorage");
 }
예제 #2
0
 public QuestionRepository(FestiMSClient festiMsClient, TableQuestionFactory tableQuestionFactory, IPictureRepository pictureRepository)
 {
     _festiMsClient        = festiMsClient;
     _tableQuestionFactory = tableQuestionFactory;
     _pictureRepository    = pictureRepository;
 }
예제 #3
0
 public AvailabilityRepository(FestiMSClient festiMsClient, IMobileServiceSyncTable <Inspector> inspectorTable)
 {
     _festiMsClient  = festiMsClient;
     _inspectorTable = inspectorTable;
 }
예제 #4
0
 public EventRepository(FestiMSClient festiMSClient)
 {
     _festiMsClient = festiMSClient;
 }
예제 #5
0
 public UserRepository(FestiMSClient festiMSClient)
 {
     this.festiMSClient = festiMSClient;
 }
예제 #6
0
 public ContactRepository(FestiMSClient client)
 {
     _client = client;
     Repo    = _client.GetSyncTable <Contact>();
 }
예제 #7
0
 public CustomerRepository(FestiMSClient festiMsClient)
 {
     _festiMsClient = festiMsClient;
 }
예제 #8
0
 public QuestionnaireRepository(FestiMSClient festiMsClient)
 {
     _festiMsClient = festiMsClient;
 }