Line | |
---|
1 | using Models.DataTransferObjects.Administrator;
|
---|
2 | using Models.DataTransferObjects.Company;
|
---|
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 ICompanyDa
|
---|
12 | {
|
---|
13 | Task<bool> AddCompany(RegisterCompanyDTO companyDTO);
|
---|
14 | Task<List<UserCompaniesDTO>> GetUserCompanies(int userId);
|
---|
15 | Task<AdministratorCompaniesDTO> GetCompany(int companyId);
|
---|
16 | }
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.