public ActionResult EditAttendanceProperty(AttendancePropertyModel model)
        {
            var result = _attendancePropertyService.UpdateService.UpdateColumn(model);

            return(BoolResult(result));
        }
        public ActionResult AddAttendanceProperty(AttendancePropertyModel model)
        {
            var result = _attendancePropertyService.AddService.AddColumn(model);

            return(BoolResult(result));
        }