public ShiftDTO InsertShift(ShiftDTO data) { Shift dataToInsert = new Shift(); dataToInsert = ShiftRequestFormatter.ConvertRespondentInfoFromDTO(data); ShiftDTO res = ShiftRequestFormatter.ConvertRespondentInfoToDTO(_unitOfWork.ShiftRepository.Create(dataToInsert)); return(res); }
public ShiftDTO GetShiftById(int id) { return(ShiftRequestFormatter.ConvertRespondentInfoToDTO(_unitOfWork.ShiftRepository.GetById(id))); }