コード例 #1
0
ファイル: ReportService.cs プロジェクト: DudkoMatt/OOP_CSharp
        public int CreateDailyReport(StaffDTO staffDTO)
        {
            _staffService.FixStaffDTO(staffDTO);
            var reportDAL = new ReportDTO(-1, DateTime.Now, staffDTO.Id).ToReportDAL();

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