Advertisement
Placido_GDD

EmployeeDTO

May 15th, 2022
954
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using DAL;
  7.  
  8. namespace DAL.DTO
  9. {
  10.     public class EmployeeDTO
  11.     {
  12.         public List<DEPARTMENT> Departments { get; set; }
  13.         public List<PositionDTO> Positions { get; set; }
  14.     }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement