public void TestGetAllCarpentryServiceById()
        {
            var service = new CarpentryServiceService(carpentryWebsiteContext);
            IEnumerable <CarpentryService> result = service.GetAllCarpentryServices();

            Assert.NotNull(result);
        }
Ejemplo n.º 2
0
 public IEnumerable <CarpentryService> GetAllCarpentryServices()
 {
     return(carpentryServiceService.GetAllCarpentryServices());
 }