示例#1
0
 public ProjectLocalStorageFactory(ITimeRecorderContext context) : base(context)
 {
 }
 public RecordingLocalStorageFactory(ITimeRecorderContext context) : base(context)
 {
 }
 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)
 {
 }