Last change
on this file since f5f7c24 was f5f7c24, checked in by 192011 <mk.snicker@…>, 17 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
412 bytes
|
Rev | Line | |
---|
[f5f7c24] | 1 | using Models.DatabaseModels;
|
---|
| 2 | using Models.DataTransferObjects;
|
---|
| 3 | using System;
|
---|
| 4 | using System.Collections.Generic;
|
---|
| 5 | using System.Linq;
|
---|
| 6 | using System.Text;
|
---|
| 7 | using System.Threading.Tasks;
|
---|
| 8 |
|
---|
| 9 | namespace 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.