Exemple #1
0
        public JsonResult JsonCreateEmployeeRole(EmployeeRole employeeRole)
        {
            return(JsonResponse(() =>
            {
                employeeRole.EnsureAuditFields(CurrentUser.UserID, DateTime.Now);

                _businessPlanService.CreateEmployeeRole(ref employeeRole);

                return employeeRole;
            }));
        }