コード例 #1
0
 public ProjectLocalStorageFactory(ITimeRecorderContext context) : base(context)
 {
 }
コード例 #2
0
 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)
 {
 }
コード例 #7
0
 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)
 {
 }