コード例 #1
0
ファイル: EmployeeController.cs プロジェクト: vksundaram/hrms
        public int SetActive(Int64 id, int active, string inActiveDate)
        {
            MTSHRDataLayer.Employee data_emp = new MTSHRDataLayer.Employee();

            int result = data_emp.ActivateAccount(id, active, inActiveDate);

            return(result);
        }