コード例 #1
0
ファイル: DatabaseGoalStorageTests.cs プロジェクト: olivif/gs
        public DatabaseGoalStorageTests()
        {
            this.dbContextMock = new Mock <GoalsDbContext>();

            this.dataStorage = new DatabaseGoalStorage(this.dbContextMock.Object);
        }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GoalManager"/> class.
 /// </summary>
 /// <param name="storage">Goals storage</param>
 public GoalManager(IGoalStorage storage)
 {
     this.storage = storage;
 }