source: Application/Dal/ApplicationStorage/DataAccess/Abstract/IIdentityCustomDa.cs

Last change on this file was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 412 bytes
Line 
1using Models.DatabaseModels;
2using Models.DataTransferObjects;
3using System;
4using System.Collections.Generic;
5using System.Linq;
6using System.Text;
7using System.Threading.Tasks;
8
9namespace Dal.ApplicationStorage.DataAccess.Abstract
10{
11 public interface IIdentityCustomDa
12 {
13 Task<bool> Register(RegisterDTO registerInfo);
14 Task<LoginDTO> CheckLoginInformation(LoginDTO loginInfo);
15 }
16}
Note: See TracBrowser for help on using the repository browser.