public ResultDto AddUpdateGeneralPayment(GroupGeneralPaymentDto _groupGeneralPaymentDto, int userId, int groupId)
        {
            GroupGeneralPaymentDal objDal = new GroupGeneralPaymentDal();
            string generalPaymentTranxml  = CommonMethods.SerializeListDto <List <GroupGeneralPaymentTranDto> >(_groupGeneralPaymentDto.TransactionsList);

            return(objDal.AddUpdateGeneralPayment(_groupGeneralPaymentDto, generalPaymentTranxml, userId, groupId));
        }
        public List <GeneralPaymentsLookupDto> Lookup(int groupID, int userId)
        {
            List <GeneralPaymentsLookupDto> lstGeneralPaymentsLookupDto = new List <GeneralPaymentsLookupDto>();
            GroupGeneralPaymentDal          gropuGeneralPmtDal          = new GroupGeneralPaymentDal();

            lstGeneralPaymentsLookupDto = gropuGeneralPmtDal.GroupGeneralPaymentLookUp(groupID, userId);
            return(lstGeneralPaymentsLookupDto);
        }
        public GroupGeneralPaymentDto GetGroupGeneralPaymentById(long accountMasterId)
        {
            GroupGeneralPaymentDal objDal = new GroupGeneralPaymentDal();

            return(objDal.GetGroupGeneralPaymentById(accountMasterId));
        }