Exemplo n.º 1
0
        public static long  Delete(long InventoryId, long AccommodationId)
        {
            DataLayer.Inventory task = new DataLayer.Inventory();
            long accid = task.Delete(InventoryId, AccommodationId);

            return(accid);
        }
Exemplo n.º 2
0
 public static long APIsave(CLayer.Inventory invenData)
 {
     DataLayer.Inventory task = new DataLayer.Inventory();
     return(task.APIUpdate(invenData));
 }
Exemplo n.º 3
0
 public static List <CLayer.Inventory> GetAllbyaccomodation(int Start, int Limit, long?accomodationId)
 {
     DataLayer.Inventory task = new DataLayer.Inventory();
     return(task.GetAllAccomodationId(Start, Limit, accomodationId));
 }
Exemplo n.º 4
0
 public static List <CLayer.Inventory> AccommodationListByProperty(long?accomodationId)
 {
     DataLayer.Inventory getinventory = new DataLayer.Inventory();
     return(getinventory.AccommodationByProperty(accomodationId));
 }
Exemplo n.º 5
0
 public static CLayer.Inventory GetOnebyInventoryId(long InventoryId)
 {
     DataLayer.Inventory getinventory = new DataLayer.Inventory();
     return(getinventory.GetOnAccommodationId(InventoryId));
 }