Ejemplo n.º 1
0
        public bool Create(Dtos.NewTimesheetsRequest newTimesheet)
        {
            var timesheets = GenerateTimesheetRequests(newTimesheet);

            _timesheetRepository.InsertMany(timesheets);

            return(true);
        }