progress, building services

This commit is contained in:
2023-04-04 21:58:24 -04:00
parent aa20adb295
commit 281608beeb
10 changed files with 2143 additions and 4 deletions

13
Services/ICardService.cs Normal file
View 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);
}