예제 #1
0
 public ProjectLocalStorageFactory(ITimeRecorderContext context) : base(context)
 {
 }
 public RecordingLocalStorageFactory(ITimeRecorderContext context) : base(context)
 {
 }
예제 #3
0
 public ProjectLocalRepository(ITimeRecorderContext context) : base(context)
 {
 }
예제 #4
0
 public BaseLocalFactory(ITimeRecorderContext context)
 {
     this.context = context;
 }
예제 #5
0
 public AbstractCrudRepo(ITimeRecorderContext context)
 {
     this.context = context;
 }
예제 #6
0
 public TagRepository(ITimeRecorderContext context) : base(context)
 {
 }
 public override ProjectLocalRepository CreateRepo(ITimeRecorderContext context)
 {
     return(new ProjectLocalRepository(context));
 }
예제 #8
0
 public RecordingLocalRepository(ITimeRecorderContext context) : base(context)
 {
 }
예제 #9
0
 public override RecordingLocalRepository CreateRepo(ITimeRecorderContext context)
 {
     return(new RecordingLocalRepository(context));
 }
예제 #10
0
 public abstract RepoType CreateRepo(ITimeRecorderContext context);
예제 #11
0
 public BaseSyncFactory(ITimeRecorderContext context, IHttpClient client)
 {
     this.context = context;
     this.client  = client;
 }
예제 #12
0
 public ProjectSynchronisedFactory(ITimeRecorderContext context, IHttpClient client) :
     base(context, client)
 {
 }