Exemplo n.º 1
0
 public IEnumerable <ArrivalCars> Get()
 {
     try
     {
         return(db.Select <ArrivalCars>());
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
         return(null);
     }
 }
Exemplo n.º 2
0
 public IEnumerable <WagonsTracking> Get()
 {
     try
     {
         return(db.Select <WagonsTracking>());
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
         return(null);
     }
 }
Exemplo n.º 3
0
 public IEnumerable <ApproachesSostav> Get()
 {
     try
     {
         return(db.Select <ApproachesSostav>());
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
         return(null);
     }
 }
Exemplo n.º 4
0
 public IEnumerable <Consignee> Get()
 {
     try
     {
         return(db.Select <Consignee>());
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
         return(null);
     }
 }