public static GenrBookDto FroGenrBookDto(this GenrBookDto dto, GenrBook a) { dto.Book = a.Book.ToBookDto(); dto.Genr = a.Genr.ToGenrDto(); return(dto); }
public static GenrBook ToGenrBook(this GenrBookDto dto) { return(new GenrBook() { Book = dto.Book.ToBook(), Genr = dto.Genr.ToGenr() }); }