diff --git a/1. Brokers/1. Brokers.md b/1. Brokers/1. Brokers.md index 18d3e09..37b12ed 100644 --- a/1. Brokers/1. Brokers.md +++ b/1. Brokers/1. Brokers.md @@ -297,11 +297,11 @@ namespace OtripleS.Web.Api.Brokers.Storages { public partial interface IStorageBroker { - public ValueTask InsertStudentAsync(Student student); - public ValueTask> SelectAllStudentsAsync(); - public ValueTask SelectStudentByIdAsync(Guid studentId); - public ValueTask UpdateStudentAsync(Student student); - public ValueTask DeleteStudentAsync(Student student); + ValueTask InsertStudentAsync(Student student); + ValueTask> SelectAllStudentsAsync(); + ValueTask SelectStudentByIdAsync(Guid studentId); + ValueTask UpdateStudentAsync(Student student); + ValueTask DeleteStudentAsync(Student student); } } ```