source: src/main/java/it/finki/tinki/service/BuilderService.java@ 8f1f460

Last change on this file since 8f1f460 was 5f9d25a, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

refactoring controllers

  • Property mode set to 100644
File size: 482 bytes
Line 
1package it.finki.tinki.service;
2
3import it.finki.tinki.model.Users.Account;
4import it.finki.tinki.model.dto.response.account.CompanyResponseDTO;
5import it.finki.tinki.model.dto.response.account.TeamResponseDTO;
6import it.finki.tinki.model.dto.response.account.UserResponseDTO;
7
8public interface BuilderService {
9 UserResponseDTO buildUserResponseDTO(Account a1);
10 CompanyResponseDTO buildCompanyResponseDTO(Account a1);
11 TeamResponseDTO buildTeamResponseDTO(Account a1);
12}
Note: See TracBrowser for help on using the repository browser.