IHaveBranch.cs 304 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MTWorkHR.Core.Entities.Base
  8. {
  9. public interface IHaveCompany
  10. {
  11. public long CompanyId { get; set; }
  12. }
  13. }