Exemple #1
0
 public async Task TestService_GetSurveyBySurveyId()
 {
     using (YuYanDBContext db = new YuYanDBContext())
     using (YuYanDBRepository repos = new YuYanDBRepository(db))
     {
         YuYanService svc = new YuYanService(repos);
         dtoSurvey obj = await svc.GetSurveyBySurveyId(1);
         Assert.IsNotNull(obj);
     }
 }