Example #1
0
        public void TestDeleteCarpentryServiceTypes()
        {
            var service = new CarpentryServiceTypeService(carpentryWebsiteContext);

            service.DeleteCarpentryServiceType(5);
            CarpentryServiceType result = service.GetCarpentryServiceTypeDetails(5);

            Assert.Null(result);
        }
Example #2
0
 public int Delete(int id)
 {
     return(carpentryServiceTypeService.DeleteCarpentryServiceType(id));
 }