progress, building services
This commit is contained in:
13
Services/ICardService.cs
Normal file
13
Services/ICardService.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Sequence.Entities;
|
||||
|
||||
namespace Sequence.Services;
|
||||
|
||||
public interface ICardService
|
||||
{
|
||||
ICollection<Card> GetCards();
|
||||
}
|
||||
|
||||
public interface IUserService
|
||||
{
|
||||
Task<User> CreateUserAsync(string username, string password);
|
||||
}
|
Reference in New Issue
Block a user