Exemplo n.º 1
0
 /// <summary>
 /// To Obsolete Wall Type
 /// </summary>
 /// <param name="WallTypeID"></param>
 /// <param name="IsDeleted"></param>
 /// <returns></returns>
 public string ObsoleteWallType(int WallTypeID, string IsDeleted)
 {
     objWallTypeDAL = new WallTypeDAL();
     return(objWallTypeDAL.ObsoleteFloorTypeDAL(WallTypeID, IsDeleted));
 }
Exemplo n.º 2
0
 /// <summary>
 /// To Delete Wall Type
 /// </summary>
 /// <param name="oWallType"></param>
 /// <returns></returns>
 public string DeleteWallType(WallTypeBO oWallType)
 {
     objWallTypeDAL = new WallTypeDAL();
     return(objWallTypeDAL.DeleteWallType(oWallType));
 }
Exemplo n.º 3
0
        /// <summary>
        /// To Update Wall Type
        /// </summary>
        /// <param name="oWallType"></param>
        /// <returns></returns>
        public string UpdateWallType(WallTypeBO oWallType)
        {
            objWallTypeDAL = new WallTypeDAL();

            return(objWallTypeDAL.UpdateWallType(oWallType));
        }
Exemplo n.º 4
0
        /// <summary>
        /// To Add Wall Type
        /// </summary>
        /// <param name="oWallType"></param>
        /// <returns></returns>
        public string AddWallType(WallTypeBO oWallType)
        {
            objWallTypeDAL = new WallTypeDAL();

            return(objWallTypeDAL.SaveWallType(oWallType));
        }
Exemplo n.º 5
0
 /// <summary>
 /// To Get Wall Type By Id
 /// </summary>
 /// <param name="WallTypeID"></param>
 /// <returns></returns>
 public WallTypeBO GetWallTypeById(int WallTypeID)
 {
     objWallTypeDAL = new WallTypeDAL();
     return(objWallTypeDAL.GetWallTypeById(WallTypeID));
 }
Exemplo n.º 6
0
 /// <summary>
 /// To Get Wall Type
 /// </summary>
 /// <returns></returns>
 public WallTypeList GetWallType()
 {
     objWallTypeDAL = new WallTypeDAL();
     return(objWallTypeDAL.GetWallType());
 }