예제 #1
0
        public int CreateDailyReport(StaffDTO staffDTO)
        {
            _staffService.FixStaffDTO(staffDTO);
            var reportDAL = new ReportDTO(-1, DateTime.Now, staffDTO.Id).ToReportDAL();

            _repository.Create(reportDAL);
            return(reportDAL.Id);
        }