Exemplo n.º 1
0
        /// <summary>
        /// 查找我审核完成的报销单
        /// </summary>
        public Employee GetMyAuditingReimburses(int accountID)
        {
            Employee employee = _DalReimburse.GetEmployeeReimburseByEmployeeID(accountID);

            employee.Reimburses = _DalReimburse.GetMyAuditingReimburses(accountID);

            foreach (Model.Reimburse item in employee.Reimburses)
            {
                item.ApplerName = BllInstance.AccountBllInstance.GetAccountById(item.ApplierID).Name;
            }
            return(employee);
        }