Exemplo n.º 1
0
        private ResultDto InsertUpdate(FundSourceDto fundsource)
        {
            ResultDto resultDto = new ResultDto();
            string    obectName = "fundsource";

            try
            {
                ObjectParameter prmFundSourceID   = new ObjectParameter("FundSourceID", fundsource.FundSourceID);
                ObjectParameter prmFundSourceCode = new ObjectParameter("FundSourceCode", string.Empty);
                int             effectedCount     = _dbContext.uspFundSourceInsertUpdate(prmFundSourceID, fundsource.FundSourceName, fundsource.TEFundSourseName, fundsource.UserId, prmFundSourceCode);

                resultDto.ObjectId   = (int)prmFundSourceID.Value;
                resultDto.ObjectCode = string.IsNullOrEmpty((string)prmFundSourceCode.Value) ? fundsource.FundSourceCode : (string)prmFundSourceCode.Value;

                if (resultDto.ObjectId > 0)
                {
                    resultDto.Message = string.Format("{0} details saved successfully with code : {1}", obectName, resultDto.ObjectCode);
                }
                else if (resultDto.ObjectId == -1)
                {
                    resultDto.Message = string.Format("Error occured while generating {0} code", obectName);
                }
                else
                {
                    resultDto.Message = string.Format("Error occured while saving {0} details", obectName);
                }
            }
            catch (Exception)
            {
                resultDto.Message  = string.Format("Service layer error occured while saving the {0} details", obectName);
                resultDto.ObjectId = -98;
            }
            return(resultDto);
        }