コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RecordService"/> class.
 /// </summary>
 public RecordService()
 {
     this.cloudService = new RecordCloudService();
     this.dbService    = new RecordDbService();
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RecordDbService"/> class.
 /// </summary>
 public RecordDbService()
 {
     this.cloudService     = new RecordCloudService();
     this.recordRepository = new RecordRepository();
 }