source:
Application/Dal/ApplicationStorage/DataAccess/Abstract/IAdministrator.cs
Last change on this file was f5f7c24, checked in by , 17 months ago | |
---|---|
|
|
File size: 409 bytes |
Line | |
---|---|
1 | using Models.DataTransferObjects.Administrator; |
2 | using System; |
3 | using System.Collections.Generic; |
4 | using System.Linq; |
5 | using System.Text; |
6 | using System.Threading.Tasks; |
7 | |
8 | namespace Dal.ApplicationStorage.DataAccess.Abstract |
9 | { |
10 | public interface IAdministrator |
11 | { |
12 | Task<List<AdministratorCompaniesDTO>> GetAllCompanies(); |
13 | Task<bool> ApproveCompany(int companyId, int administratorId); |
14 | } |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.