Skip to content

Commit

Permalink
CODE RUB: Remove Public Keyword StorageBrokers
Browse files Browse the repository at this point in the history
  • Loading branch information
glhays committed Aug 9, 2024
1 parent 5a275c3 commit 25fa5bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 1. Brokers/1. Brokers.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,11 +297,11 @@ namespace OtripleS.Web.Api.Brokers.Storages
{
public partial interface IStorageBroker
{
public ValueTask<Student> InsertStudentAsync(Student student);
public ValueTask<IQueryable<Student>> SelectAllStudentsAsync();
public ValueTask<Student> SelectStudentByIdAsync(Guid studentId);
public ValueTask<Student> UpdateStudentAsync(Student student);
public ValueTask<Student> DeleteStudentAsync(Student student);
ValueTask<Student> InsertStudentAsync(Student student);
ValueTask<IQueryable<Student>> SelectAllStudentsAsync();
ValueTask<Student> SelectStudentByIdAsync(Guid studentId);
ValueTask<Student> UpdateStudentAsync(Student student);
ValueTask<Student> DeleteStudentAsync(Student student);
}
}
```
Expand Down

0 comments on commit 25fa5bd

Please sign in to comment.