Exemple #1
0
 public DataTable getPackageFilterData(BALPackageRateCard obj)
 {
     try
     {
         SqlConnection  cn = new SqlConnection(strCon);
         SqlDataAdapter da = new SqlDataAdapter();
         da.SelectCommand = new SqlCommand("[dbo].[sp_packagemaster]", cn);
         da.SelectCommand.Parameters.Clear();
         da.SelectCommand.Parameters.AddWithValue("@Action", obj._Action);
         da.SelectCommand.Parameters.AddWithValue("@packageId", obj._packageId);
         da.SelectCommand.CommandType = CommandType.StoredProcedure;
         cn.Open();
         da.SelectCommand.ExecuteReader();
         DataTable dtReturnData = new DataTable();
         cn.Close();
         da.Fill(dtReturnData);
         if (dtReturnData != null)
         {
             return(dtReturnData);
         }
         else
         {
             return(null);
         }
     }
     catch (Exception)
     {
         return(null);
     }
 }
Exemple #2
0
        public int DeletePackageRateCard(BALPackageRateCard obj)
        {
            try
            {
                SqlConnection  cn = new SqlConnection(strCon);
                SqlDataAdapter da = new SqlDataAdapter();
                da.DeleteCommand = new SqlCommand("[dbo].[sp_packagemaster]", cn);
                da.DeleteCommand.Parameters.AddWithValue("@Action", obj._Action);
                da.DeleteCommand.Parameters.AddWithValue("@RateCardId", obj._RateCardId);

                da.DeleteCommand.CommandType = CommandType.StoredProcedure;
                cn.Open();
                int Status = da.DeleteCommand.ExecuteNonQuery();
                cn.Close();
                if (Status > 0)
                {
                    return(Status);
                }
                else
                {
                    return(0);
                }
            }
            catch (Exception)
            {
                return(0);
            }
        }
Exemple #3
0
        public int UpdateRoomRate(BALPackageRateCard obj)
        {
            try
            {
                SqlConnection  cn = new SqlConnection(strCon);
                SqlDataAdapter da = new SqlDataAdapter();
                da.UpdateCommand = new SqlCommand("[dbo].[sp_packagemaster]", cn);
                da.UpdateCommand.Parameters.AddWithValue("@Action", obj._Action);
                da.UpdateCommand.Parameters.AddWithValue("@RateCardId", obj._RateCardId);
                da.UpdateCommand.Parameters.AddWithValue("@valFrom", obj._valFrom);
                da.UpdateCommand.Parameters.AddWithValue("@ValTo", obj._ValTo);
                da.UpdateCommand.Parameters.AddWithValue("@RoomCategoryId", obj._RoomCategoryId);
                da.UpdateCommand.Parameters.AddWithValue("@fromPax", obj._fromPax);
                da.UpdateCommand.Parameters.AddWithValue("@ToPax", obj._ToPax);
                da.UpdateCommand.Parameters.AddWithValue("@ppBc", obj._ppBc);
                da.UpdateCommand.Parameters.AddWithValue("@SRSBc", obj._SRSBc);
                da.UpdateCommand.Parameters.AddWithValue("@taxEx", obj._taxEx);
                da.UpdateCommand.Parameters.AddWithValue("@taxValue", obj._taxValue);
                da.UpdateCommand.Parameters.AddWithValue("@PPNc", obj._PPNc);
                da.UpdateCommand.Parameters.AddWithValue("@SRSNc", obj._SRSNc);
                da.UpdateCommand.Parameters.AddWithValue("@Date", obj._Date);

                da.UpdateCommand.Parameters.AddWithValue("@fromPaxup", obj._fromPaxup);
                da.UpdateCommand.Parameters.AddWithValue("@ToPaxup", obj._ToPaxup);
                da.UpdateCommand.Parameters.AddWithValue("@RoomCategoryIdup", obj._RoomCategoryIdup);
                da.UpdateCommand.Parameters.AddWithValue("@AgentId", obj.AgentId);
                da.UpdateCommand.Parameters.AddWithValue("@AgentIdRef", obj.AgentIdRef);
                da.UpdateCommand.Parameters.AddWithValue("@AgentIdCommission", obj.AgentIdCommission);
                da.UpdateCommand.Parameters.AddWithValue("@AgentCommission", obj.AgentCommission);
                da.UpdateCommand.CommandType = CommandType.StoredProcedure;
                cn.Open();
                int Status = da.UpdateCommand.ExecuteNonQuery();
                cn.Close();
                if (Status > 0)
                {
                    return(Status);
                }
                else
                {
                    return(0);
                }
            }
            catch (Exception ex)
            {
                return(0);
            }
        }
Exemple #4
0
        public int AddNewPackageRateCard(BALPackageRateCard obj)
        {
            try
            {
                SqlConnection  cn = new SqlConnection(strCon);
                SqlDataAdapter da = new SqlDataAdapter();
                da.InsertCommand = new SqlCommand("[dbo].[sp_packagemaster]", cn);
                da.InsertCommand.Parameters.AddWithValue("@Action", obj._Action);
                da.InsertCommand.Parameters.AddWithValue("@RateCardId", obj._RateCardId);
                da.InsertCommand.Parameters.AddWithValue("@packageId", obj._packageId);
                da.InsertCommand.Parameters.AddWithValue("@RateCategory", obj._RateCategory);
                da.InsertCommand.Parameters.AddWithValue("@SupplierName", obj._SupplierName);
                da.InsertCommand.Parameters.AddWithValue("@LocationId", obj._LocationId);
                da.InsertCommand.Parameters.AddWithValue("@valFrom", obj._valFrom);
                da.InsertCommand.Parameters.AddWithValue("@ValTo", obj._ValTo);
                da.InsertCommand.Parameters.AddWithValue("@Tax", obj._Tax);
                da.InsertCommand.Parameters.AddWithValue("@Currency", obj._Currency);
                da.InsertCommand.Parameters.AddWithValue("@Date", obj._Date);

                da.InsertCommand.Parameters.AddWithValue("@FrompaxMain", obj.FrompaxMain);
                da.InsertCommand.Parameters.AddWithValue("@ToPaxMain", obj.ToPaxMain);


                da.InsertCommand.CommandType = CommandType.StoredProcedure;
                cn.Open();
                int Status = da.InsertCommand.ExecuteNonQuery();
                cn.Close();
                if (Status > 0)
                {
                    return(Status);
                }
                else
                {
                    return(0);
                }
            }
            catch (Exception)
            {
                return(0);
            }
        }