Beispiel #1
0
 public static bool Delete(int id)
 {
     return(BodegaMapper.Delete(id));
 }
Beispiel #2
0
 public static Bodega GetBodega(int id)
 {
     return(BodegaMapper.GetBodega(id));
 }
Beispiel #3
0
 public static bool Put(Bodega bodega)
 {
     return(BodegaMapper.Put(bodega));
 }
Beispiel #4
0
 public static IEnumerable <Bodega> GetBodegas()
 {
     return(BodegaMapper.GetBodegas());
 }