source: Application/Dal/ApplicationStorage/DataAccess/Abstract/ICompanyDa.cs@ f5f7c24

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

Initial commit

  • Property mode set to 100644
File size: 507 bytes
Line 
1using Models.DataTransferObjects.Administrator;
2using Models.DataTransferObjects.Company;
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 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.