12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using OASystem.Domain.Entities.Customer;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.CRM
- {
- public class NewClientDataView:Crm_NewClientData
- {
-
-
-
- public int countPage { get; set; }
-
-
-
- public int RowNumber { get; set; }
-
-
-
- public List<AscribedUser> AscribedUser { get; set; }
-
-
-
- public List<AscribedDepartment> AscribedDepartment {get; set; }
- }
-
-
-
- public class AscribedUser
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- public string CnName { get; set; }
- public int NewClientDataId { get; set; }
- }
-
-
-
- public class AscribedDepartment
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Name { get; set; }
- public int NewClientDataId { get; set; }
- }
- }
|