当前位置: 首页>>代码示例>>C#>>正文


C# EmployeeBLL.GetEmployeeFunds方法代码示例

本文整理汇总了C#中EmployeeBLL.GetEmployeeFunds方法的典型用法代码示例。如果您正苦于以下问题:C# EmployeeBLL.GetEmployeeFunds方法的具体用法?C# EmployeeBLL.GetEmployeeFunds怎么用?C# EmployeeBLL.GetEmployeeFunds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在EmployeeBLL的用法示例。


在下文中一共展示了EmployeeBLL.GetEmployeeFunds方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetEmployeeFunds

 public List<V_EMPLOYEEFUNDS> GetEmployeeFunds(string strCompantID, string OwnerId)
 {
     using (EmployeeBLL bll = new EmployeeBLL())
     {
         return bll.GetEmployeeFunds(strCompantID, OwnerId);
     }
 }
开发者ID:JuRogn,项目名称:OA,代码行数:7,代码来源:PersonnelService.cs

示例2: Page_Load

        protected void Page_Load(object sender, EventArgs e)
        {
            EmployeeBLL bll = new EmployeeBLL();
            bll.GetEmployeeFunds("703dfb3c-d3dc-4b1d-9bf0-3507ba01b716", "24a358f9-8539-4faa-aee6-d5cbc8ea450d");
            //LogManager log = new LogManager();
            //Exception ex = new Exception("测试发送邮件");
            //ErrorLog msg = new ErrorLog(ex);
            //log.WriteLog(msg);
            #region 定时触发测试
            //AttendanceSolutionAsignBLL bll = new AttendanceSolutionAsignBLL();
            //T_HR_ATTENDANCESOLUTIONASIGN ent = new T_HR_ATTENDANCESOLUTIONASIGN();
            //bll.UpdateCheckState("T_HR_ATTENDANCESOLUTIONASIGN", "ATTENDANCESOLUTIONASIGNID", "07D79240-4EA1-4397-A0B1-502A10106530", "2");


            //string str="<Para FuncName=\"ATTENDANCESOLUTIONASIGNRemindTrigger\" Name=\"ATTENDANCESOLUTIONASIGNID\" Value=\"07D79240-4EA1-4397-A0B1-502A10106530\"></Para>";
            //EngineTriggerService sv = new EngineTriggerService();
            //sv.EventTriggerProcess(str);
            #endregion
            //return;
            //using (AttendMonthlyBalanceBLL bll = new AttendMonthlyBalanceBLL())
            //{
            //    bll.CalculateEmployeeAttendanceMonthlyByEmployeeID("2013-12", "c962b4ac-0c93-41b3-bb12-2ec93258ceab");

            //}
            //return;
            //using (AttendMonthlyBalanceBLL bll = new AttendMonthlyBalanceBLL())
            //{
            //    bll.CalculateEmployeeAttendanceMonthlyByEmployeeID("2013-12", "c962b4ac-0c93-41b3-bb12-2ec93258ceab");
              
            //}
            //LeftOfficeBLL bll = new LeftOfficeBLL();
            //bll.UpdateCheckState("T_HR_LEFTOFFICE", "DIMISSIONID", "634c214b-7608-4222-87e8-3ad36a474d6c", "1");
            //using (EmployeeEntryBLL bll = new EmployeeEntryBLL())
            //{

            //    EmployeePostBLL ebll = new EmployeePostBLL();
            //    var entity = bll.GetEmployeeEntryByID("ae0b7a2d-ce96-45a8-8203-7f2996f16f68");


            //    var ent = ebll.GetEmployeePostByEmployeeID("095bf1f5-7f8a-4c6d-b9ac-1bb55e9d6331");
            //    bll.EmployeeEntryUpdate(entity, ent);
            //}
            return;
            //using (EmployeeBLL bll = new EmployeeBLL())
            //{
            //    bll.GetEmployeeLeaders("ae4c77df-f734-477a-aee7-09ece0269d7b", 0);
            //}
            return;
            #region 请假消除异常
            //测试请假消除异常
            //OutApplyBLL bll = new OutApplyBLL();
            //bll.updateAllLeve();
            //return;

            // bll.UpdateCheckState("T_HR_EMPLOYEEOUTAPPLIECRECORD", "OVERTIMERECORDID", "826a51bb-21e0-4d49-979f-0fcfbb452c32", "1");
            #endregion
            //EmployeePostChangeBLL bll = new EmployeePostChangeBLL();
            //bll.UpdateCheckState("T_HR_EMPLOYEEPOSTCHANGE", "POSTCHANGEID", "33550c08-aa08-47e5-ad65-9db98faf5375", "1");

            //EngineService eg = new EngineService();
            //string xml = System.IO.File.ReadAllText("c:/HRXML.txt");
            //XElement.Parse(xml);
            //eg.CallWaitAppService(xml);
            #region 重新初始化考勤
            //return;
            //using (AttendanceRecordBLL bll = new AttendanceRecordBLL())
            //{
            //    DateTime dtstart = new DateTime(2013, 09, 01);
            //    DateTime dtend = dtstart.AddMonths(1).AddDays(-1);
            //    string smtmsg
            //        = bll.CompulsoryInitialization("0", "72b3f128-6cf0-498c-8e70-89d0d66403f2", dtstart, dtend, "0");

            //    //return smtmsg;
            //}
            #endregion

            using (AttendanceSolutionAsignBLL bllAttendanceSolutionAsign = new AttendanceSolutionAsignBLL())
            {
                //bllAttendanceSolutionAsign.AsignAttendanceSolutionByOrgID("1", "703dfb3c-d3dc-4b1d-9bf0-3507ba01b716", "2013-09");     
                bllAttendanceSolutionAsign.AsignAttendanceSolutionByOrgID("4", "24a358f9-8539-4faa-aee6-d5cbc8ea450d", "2013-09");
            }
        }
开发者ID:JuRogn,项目名称:OA,代码行数:82,代码来源:Test.aspx.cs


注:本文中的EmployeeBLL.GetEmployeeFunds方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。