- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace GreenTree.Strohrmann.ERP.Web.Models.Search
- {
- public interface ICustomerSearchable
- {
- /// <summary>
- /// Model class searchable for customer id
- /// </summary>
- public int CustomerId { get; set; }
- }
- }
|