public static StayingInRoom ModelToEnity(this StayingInRoomModel model, bool virtualActive = false)
        {
            StayingInRoom entity = new StayingInRoom()
            {
                 CustomerId=model.CustomerId,
                  RoomSaleId=model.RoomSale_Id,
                Id = model.Id,
                IsActive = model.IsActive
            };
            if (virtualActive)
            {
                entity.RoomSale = model.RoomSale;
                entity.Customer = model.Customer;

            }
            return entity;
        }
Beispiel #2
0
        public static StayingInRoom ModelToEnity(this StayingInRoomModel model, bool virtualActive = false)
        {
            StayingInRoom entity = new StayingInRoom()
            {
                CustomerId = model.CustomerId,
                RoomSaleId = model.RoomSale_Id,
                Id         = model.Id,
                IsActive   = model.IsActive
            };

            if (virtualActive)
            {
                entity.RoomSale = model.RoomSale;
                entity.Customer = model.Customer;
            }
            return(entity);
        }
Beispiel #3
0
 public static StayingInRoomModel EntityToModel(this StayingInRoom entity, bool virtualActive = false)
 {
     try
     {
         StayingInRoomModel model = new StayingInRoomModel()
         {
             CustomerId  = entity.CustomerId,
             RoomSale_Id = entity.RoomSaleId,
             IsActive    = entity.IsActive,
             Id          = entity.Id
         };
         if (virtualActive)
         {
             model.RoomSale = entity.RoomSale;
             model.Customer = entity.Customer;
         }
         return(model);
     }
     catch (Exception)
     {
         return(new StayingInRoomModel());
     }
 }