Exemplo n.º 1
0
 public void  Delete()
 {
     try
     {
         TeaShopController teaShopCont = new TeaShopController();
         teaShopCont.Request = new HttpRequestMessage();
         var details = teaShopCont.DeleteItem(4);
     }catch (Exception ex)
     {
     }
 }
Exemplo n.º 2
0
 public void Details()
 {
     try
     {
         TeaShopController teaShopCont = new TeaShopController();
         teaShopCont.Request       = new HttpRequestMessage();
         teaShopCont.Configuration = new HttpConfiguration();
         var detaills = teaShopCont.SaleDetails();
     }catch (Exception ex)
     {
     }
 }