public bool Put(PrintEntity entity) { ManageSQLConnection manageSQLConnection = new ManageSQLConnection(); List <KeyValuePair <string, string> > sqlParameters = new List <KeyValuePair <string, string> >(); sqlParameters.Add(new KeyValuePair <string, string>("@SRNo", entity.DOCNumber)); return(manageSQLConnection.UpdateValues("UpdateSRDetailsUnLoading", sqlParameters)); }
public bool Put(PrintEntity entity) { ManageSQLConnection manageSQLConnection = new ManageSQLConnection(); List <KeyValuePair <string, string> > sqlParameters = new List <KeyValuePair <string, string> >(); sqlParameters.Add(new KeyValuePair <string, string>("@STNo", entity.DOCNumber)); return(manageSQLConnection.UpdateValues("UpdateStockTransferIssueslip", sqlParameters)); }