public RentedCar[] GetAll()
 {
     try
     {
         using (var c = new RentedCarBusiness())
         {
             return(c.GetAll().ToArray());
         }
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex);
         return(null);
     }
 }
Ejemplo n.º 2
0
 public IHttpActionResult Get(int id)
 {
     try
     {
         using (var c = new RentedCarBusiness())
         {
             var temp = c.GetAll().Where(s => s.Id == id).FirstOrDefault();
             if (temp == null)
             {
                 return(NotFound());
             }
             return(Ok(temp));
         }
     }
     catch (Exception ex)
     {
         return(BadRequest($"{ex}"));
     }
 }
Ejemplo n.º 3
0
 public IHttpActionResult Get()
 {
     try
     {
         using (var c = new RentedCarBusiness())
         {
             var templist = c.GetAll().ToList();
             if (templist == null)
             {
                 return(NotFound());
             }
             return(Ok(templist));
         }
     }
     catch (Exception ex)
     {
         return(BadRequest($"{ex}"));
     }
 }