Exemplo n.º 1
0
        public FundSourceDto GetByID(int fundsourceID)
        {
            List <uspFundSourceGetByFundSourceId_Result> lstuspfundsourceGetByFundsourceId_result = _dbContext.uspFundSourceGetByFundSourceId(fundsourceID).ToList();
            FundSourceDto fundsourceDto = Mapper.Map <uspFundSourceGetByFundSourceId_Result, FundSourceDto>(lstuspfundsourceGetByFundsourceId_result.FirstOrDefault());

            return(fundsourceDto);
        }