public IList <CTransactionsStockDetails> GetTransferDetails(string pInputValue, ref COutputValue pOutput) { try { return(CallFunctionWithList <CTransactionsStockDetails>(CSystemFunction.GetTransferStockDetail, pInputValue, ref pOutput)); } catch (Exception ex) { CLogManager.WriteDAL("GetTransferDetails", ex.Message); return(null); } }
public CApplicationMessage UpdateAsset(string pInputValue) { try { return(CallFunction <CApplicationMessage>(CSystemFunction.UpdateFixedAsset, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CAssetDao", ex.Message); return(null); } }
public IList <CStock> GetInventoryStockList(string pInputValue, ref COutputValue pOutput) { try { return(CallFunctionWithList <CStock>(CSystemFunction.GetInventoryStock, pInputValue, ref pOutput)); } catch (Exception ex) { CLogManager.WriteDAL("CStockDao", ex.Message); return(null); } }
public CCurrency GetCurrency(string pInputValue) { try { return(CallFunction <CCurrency>(CSystemFunction.GetCurrencyList, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CItemsDao", ex.Message); return(null); } }
public CItemGroup GetInventoryItemGroup(string pInputValue) { try { return(CallFunction <CItemGroup>(CSystemFunction.GetInventoryItemGroup, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CItemsDao", ex.Message); return(null); } }
public IList <CRefType> GetRefTypeList(string pInputValue, ref COutputValue pOutput) { try { return(CallFunctionWithList <CRefType>(CSystemFunction.GetRefType, pInputValue, ref pOutput)); } catch (Exception ex) { CLogManager.WriteDAL("CEmployeeDao", ex.Message); return(null); } }
public CGroupBase GetGroupBase(string pInputValue) { try { return(CallFunction <CGroupBase>(CSystemFunction.GetGroup, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CGroupBaseDao", ex.Message); return(null); } }
public IList <CInventoryBase> GetInventoryBaseList(int fBase, string pInputValue, ref COutputValue pOutput) { try { return(CallFunctionWithList <CInventoryBase>(fBase, pInputValue, ref pOutput)); } catch (Exception ex) { CLogManager.WriteDAL(string.Format("CInventoryBaseDao_{0}", fBase), ex.Message); return(null); } }
/* * public CApplicationMessage UpdateInventoryBase(string pInputValue) * { * return UpdateInventoryBase(CSystemFunction.UpdateInventoryBase, pInputValue); * }*/ public CApplicationMessage UpdateInventoryBase(int fBase, string pInputValue) { try { return(CallFunction <CApplicationMessage>(fBase, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL(string.Format("CInventoryBaseDao_{0}", fBase), ex.Message); return(null); } }
public CApplicationMessage UpdateInwardDetail(string pInputValue) { try { return(CallFunction <CApplicationMessage>(CSystemFunction.UpdateInwardDetail, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("UpdateInwardDetail", ex.Message); return(null); } }
public IList <CDesignParameter> GetViewDesignParameter(string pInputValue, ref COutputValue pOutputValue) { try { return(CallFunctionWithList <CDesignParameter>(CSystemFunction.GetViewDesignParameter, pInputValue, ref pOutputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CViewDao", ex.Message); return(null); } }
public CInwardDetail GetInwardDetail(string pInputValue) { try { return(CallFunction <CInwardDetail>(CSystemFunction.GetInwardDetailList, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("GetInwardDetail", ex.Message); return(null); } }
public IList <CInwardDetail> GetInwardDetailList(string pInputValue, ref COutputValue pOutput) { try { return(CallFunctionWithList <CInwardDetail>(CSystemFunction.GetInwardDetailList, pInputValue, ref pOutput)); } catch (Exception ex) { CLogManager.WriteDAL("GetInwardDetailList", ex.Message); return(null); } }
public CTransactionsStock GetTransfer(string pInputValue) { try { return(CallFunction <CTransactionsStock>(CSystemFunction.GetTransfer, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("GetTransfer", ex.Message); return(null); } }
public IList <CIntDefination> GetIntDefinationList(string pInputValue) { try { return(CallFunctionWithList <CIntDefination>(CSystemFunction.GetIntDefination, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CItemsDao", ex.Message); return(null); } }
public IList <CClientGroupConfig> GetClientGroupConfig(string pInputValue, ref COutputValue pOutputValue) { try { return(CallFunctionWithList <CClientGroupConfig>(CSystemFunction.GetClientGroupConfig, pInputValue, ref pOutputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CClientGroupDao", ex.Message); return(null); } }
public CUnit GetInventoryUnit(string pInputValue) { try { return(CallFunction <CUnit>(CSystemFunction.GetInventoryUnit, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CUnitDao", ex.Message); return(null); } }
public CApplicationMessage UpdateClientGroupConfig(string pInputValue) { try { return(CallFunction <CApplicationMessage>(CSystemFunction.UpdateClientGroupConfig, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CClientGroupDao", ex.Message); return(null); } }
public IList <CGroupBase> GetGroupBaseList(string pInputValue, ref COutputValue pOutputValue) { try { return(CallFunctionWithList <CGroupBase>(CSystemFunction.GetGroup, pInputValue, ref pOutputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CGroupBaseDao", ex.Message); return(null); } }
public CEmployee GetEmployee(string pInputValue) { try { return(CallFunction <CEmployee>(CSystemFunction.GetEmployee, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CEmployeeDao", ex.Message); return(null); } }
public IList <CCurrency> GetCurrencyList(string pInputValue, ref COutputValue pOutput) { try { return(CallFunctionWithList <CCurrency>(CSystemFunction.GetCurrencyList, pInputValue, ref pOutput)); } catch (Exception ex) { CLogManager.WriteDAL("CItemsDao", ex.Message); return(null); } }
public IList <CCustomerGroup> GetCustomerGroupList(string pInputValue, ref COutputValue pOutput) { try { return(CallFunctionWithList <CCustomerGroup>(CSystemFunction.GetCustomerGroupList, pInputValue, ref pOutput)); } catch (Exception ex) { CLogManager.WriteDAL("CApplicationDao", ex.Message); return(null); } }
public CApplicationMessage UpdateCurrency(string pInputValue) { try { return(CallFunction <CApplicationMessage>(CSystemFunction.UpdateCurrency, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CItemsDao", ex.Message); return(null); } }
public CCustomerGroup GetCustomerGroup(string pInputValue) { try { return(CallFunction <CCustomerGroup>(CSystemFunction.GetCustomerGroupList, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CApplicationDao", ex.Message); return(null); } }
public IList <CAsset> GetAssetList(string pInputValue, ref COutputValue pOutputValue) { try { return(CallFunctionWithList <CAsset>(CSystemFunction.GetFixedAsset, pInputValue, ref pOutputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CAssetDao", ex.Message); return(null); } }
public CApplicationMessage UpdateCustomerGroup(string pInput) { try { return(CallFunction <CApplicationMessage>(CSystemFunction.UpdateCustomerGroup, pInput)); } catch (Exception ex) { CLogManager.WriteDAL("UpdateCustomer", ex.Message); return(null); } }
public IList <CModule> GetModuleByUser(string pInputValue) { try { return(CallFunctionWithList <CModule>(CSystemFunction.GetModuleByUserID, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CApplicationDao", ex.Message); return(null); } }
public CPersonRole GetPersonRole(string pInputValue) { try { return(CallFunction <CPersonRole>(CSystemFunction.GetPersonRole, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CPersonDao", ex.Message); return(null); } }
public CApplicationMessage UpdateInventoryStock(string pInputValue) { try { return(CallFunction <CApplicationMessage>(CSystemFunction.UpdateInventoryStock, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CStockDao", ex.Message); return(null); } }
public IList <CTransactionAccountDetail> GetTransactionAccountDetail(string pInputValue) { try { return(CallFunctionWithList <CTransactionAccountDetail>(CSystemFunction.GetTransactionAccountDetail, pInputValue)); } catch (Exception ex) { CLogManager.WriteDAL("CTransactionDao", ex.Message); return(null); } }