sharee.bike-App/TINKLib/Model/User/Account/IStore.cs

27 lines
678 B
C#
Raw Normal View History

2021-06-26 20:57:55 +02:00
using System.Threading.Tasks;
namespace TINK.Model.User.Account
2021-05-13 20:03:07 +02:00
{
2022-09-06 16:08:19 +02:00
/// <summary>Interface to manage an account store.</summary>
public interface IStore
{
/// <summary>
/// Reads mail address and password from account store.
/// </summary>
/// <returns></returns>
Task<IAccount> Load();
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>
/// Writes mail address and password to account store.
/// </summary>
/// <param name="mailAndPwd"></param>
Task Save(IAccount mailAndPwd);
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>
/// Deletes mail address and password from account store.
/// </summary>
/// <returns> Empty account instance if deleting succeeded.</returns>
IAccount Delete(IAccount mailAndPwd);
}
2021-05-13 20:03:07 +02:00
}