Beispiel #1
0
 public int PostWays([FromBody] Directory_Locomotive value)
 {
     try
     {
         this.ef_dir.Add(value);
         return(ef_dir.Save());
     }
     catch (Exception e)
     {
         return(-1);
     }
 }
Beispiel #2
0
 public int PutWays(string locomotive, [FromBody] Directory_Locomotive value)
 {
     try
     {
         this.ef_dir.Update(value);
         return(this.ef_dir.Save());
     }
     catch (Exception e)
     {
         return(-1);
     }
 }
Beispiel #3
0
 public IHttpActionResult GetLocomotiveOfID(string locomotive)
 {
     try
     {
         Directory_Locomotive ens = this.ef_dir
                                    .Context
                                    .Where(l => l.locomotive == locomotive)
                                    .ToList()
                                    .Select(m => m.GetDirectory_Locomotive()).FirstOrDefault();
         return(Ok(ens));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }