OnlineSalesAutoCrop/Api/OnlineSalesAutoCrop.CoreAPI.Models/Requests/Integrations/EmployeeIntegrationRequest.cs

41 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace OnlineSalesAutoCrop.CoreAPI.Models.Requests.Integrations;
public class EmployeeIntegrationRequest
{
public string EmployeeVendorCode { get; set; }
public string EmployeeVendorName { get; set; }
public string DesignationCode { get; set; }
public string DesignationDescription { get; set; }
public string MobileNo { get; set; }
public string Email { get; set; }
public string SalesOrgCode { get; set; }
public string SalesOrgDescription { get; set; }
public string DistChannelCode { get; set; }
public string DistChannelDescription { get; set; }
public string DivisionCode { get; set; }
public string DivisionDescription { get; set; }
public string RegionAAl { get; set; }
public string AreaCode { get; set; }
public string AreaDescription { get; set; }
public string SalesUnitACCLCode { get; set; }
public string SalesUnitACCLDescription { get; set; }
public string TerritoryCode { get; set; }
public string TerritoryDescription { get; set; }
public string SalesOfficeCode { get; set; }
public string SalesOfficeDescription { get; set; }
public string PlantCode { get; set; }
public string PlantDescription { get; set; }
public string Status { get; set; }
public string StatusDescription { get; set; }
}
public class EmployeeBySalesOrgCodeRequest
{
public string EmployeeVendorCode { get; set; } = string.Empty;
public string SalesOrgCode { get; set; } = string.Empty;
}