public Leather_Type Get_Leather_Type_By_Id(int ID)
        {
            Leather_Type _Leather_Type = new Leather_Type();

            DataTable dt = Leather_Type_DA.Get_Leather_Type_By_Id(ID);

            foreach (DataRow row in dt.Rows)
            {
                _Leather_Type.ID = ID;
                _Leather_Type.Type = (row["Type"].ToString());
            }
            return _Leather_Type;
        }
        public static string Insert(Leather_Type _Leather_Type)
        {
            DbCommand command = Catalog_Access.CreateCommand();
            command.CommandText = "sp_insert_Leather_Type";

            DbParameter param;

            param = command.CreateParameter();
            param.ParameterName = "@Type";
            param.Value = _Leather_Type.Type;
            param.DbType = DbType.String;
            command.Parameters.Add(param);

            param = command.CreateParameter();
            param.ParameterName = "@CreatedBy";
            param.Value = _Leather_Type.CreatedBy;
            param.DbType = DbType.String;
            command.Parameters.Add(param);

            param = command.CreateParameter();
            param.ParameterName = "@Return";
            param.DbType = DbType.String;
            param.Size = 2;
            param.Direction = ParameterDirection.Output;
            command.Parameters.Add(param);

            Catalog_Access.ExecuteNonQuery(command);

            string Return = command.Parameters["@Return"].Value.ToString();

            return Return;
        }
        public string Insert(string Type)
        {
            Leather_Type _Leather_Type = new Leather_Type();
            _Leather_Type.Type = Type;
            _Leather_Type.CreatedBy = Session["User"].ToString();

            return Leather_Type_DA.Insert(_Leather_Type);
        }
        public string Update(int ID, string Type)
        {
            Leather_Type _Leather_Type = new Leather_Type();
            _Leather_Type.ID = ID;
            _Leather_Type.Type = Type;
            _Leather_Type.UpdatedBy = Session["User"].ToString();

            if (_Leather_Type.UpdatedBy.ToString().ToUpper() == ("Mr. Asif").ToString().ToUpper() || _Leather_Type.UpdatedBy.ToString().ToUpper() == ("Saud Piracha").ToString().ToUpper())
            {
                return Leather_Type_DA.Update(_Leather_Type);
            }
            else
            {
                return "-1";
            }
        }