Provision_of_services.cs 403 B

123456789101112131415
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace API_sm.ModelBase
  4. {
  5. [Table ("provision_of_services")]
  6. public class Provision_of_services
  7. {
  8. [Key]
  9. public int ID { get; set; }
  10. public DateTime Date_p { get; set; }
  11. public int ID_client { get; set; }
  12. public int ID_service { get; set; }
  13. }
  14. }