Beispiel #1
0
        //public void UpdateFinanceSettings(FinanceSettings entity)
        //{
        //    try
        //    {
        //        using (var manage = new UserBalanceManager())
        //        {
        //            manage.UpdateFinanceSettings(entity);
        //            //FinanceSettings fEntity = manage.GetFinanceSettingsByFinanceId(entity.FinanceId);
        //            //if (fEntity != null && fEntity.FinanceId > 0)
        //            //{
        //            //    if (fEntity.OperateType != entity.OperateType)
        //            //    {
        //            //        if (manage.IsExistFinance(entity.UserId, entity.OperateType))
        //            //        {
        //            //            throw new Exception("当前用户已存在,不能重复添加!");
        //            //        }
        //            //        else
        //            //        {
        //            //            manage.UpdateFinanceSettings(entity);
        //            //        }
        //            //    }
        //            //}
        //            //else
        //            //{
        //            //    throw new Exception("为查询到当前财务员记录!");
        //            //}
        //        }
        //    }
        //    catch (Exception ex)
        //    {
        //        throw new Exception("保存数据失败,原因:" + ex.Message);
        //    }
        //}

        public FinanceSettingsInfo_Collection GetFinanceSettingsCollection(string userId, DateTime startTime, DateTime endTime, int pageIndex, int pageSize)
        {
            using (var manage = new UserBalanceManager())
            {
                return(manage.GetFinanceSettingsCollection(userId, startTime, endTime, pageIndex, pageSize));
            }
        }