public void SetUp()
 {
     _entry = new Entry
     {
         Title       = Resources.NewEntryTitle,
         Description = Resources.NewEntryDescription,
         Content     = Resources.NewEntryContent,
         ImageUrl    = Resources.NewEntryImgUrl
     };
     _account            = new Account();
     _testDate           = DateTime.Now;;
     _entryManageService = new EntryManageService();
 }
Exemple #2
0
 public EntryRepository(IEntryManageService entryService)
 {
     _entryService = entryService;
 }