Beispiel #1
0
        public CrudeFinancialCostcentreModel CrudeFinancialCostcentreFetchByFinancialCostcentreId(System.Guid financialcostcentreid)
        {
            CrudeFinancialCostcentreModel financialCostcentre =
                new CrudeFinancialCostcentreBusiness().FetchByFinancialCostcentreId(financialcostcentreid);

            return(financialCostcentre);
        }
Beispiel #2
0
        public IEnumerable <CrudeFinancialCostcentreModel> CrudeFinancialCostcentreFetchByFinancialCompanyId(System.Guid financialcompanyid)
        {
            List <CrudeFinancialCostcentreModel> financialCostcentre =
                new CrudeFinancialCostcentreBusiness().FetchByFinancialCompanyId(financialcompanyid);

            return(financialCostcentre);
        }
Beispiel #3
0
        public IEnumerable <CrudeFinancialCostcentreModel> CrudeFinancialCostcentreFetchAll()
        {
            List <CrudeFinancialCostcentreModel> financialCostcentres =
                new CrudeFinancialCostcentreBusiness().FetchAll();

            return(financialCostcentres);
        }
Beispiel #4
0
        public CrudeFinancialCostcentreModel CrudeFinancialCostcentreFetchByFinancialCostcentreCode(System.String financialcostcentrecode)
        {
            CrudeFinancialCostcentreModel financialCostcentre =
                new CrudeFinancialCostcentreBusiness().FetchByFinancialCostcentreCode(financialcostcentrecode);

            return(financialCostcentre);
        }
Beispiel #5
0
        public IEnumerable <CrudeFinancialCostcentreModel> CrudeFinancialCostcentreFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeFinancialCostcentreModel> financialCostcentres =
                new CrudeFinancialCostcentreBusiness().FetchAllWithLimit(limit);

            return(financialCostcentres);
        }