Добавьте файлы проекта.

This commit is contained in:
zxckawory
2026-09-03 20:49:08 +03:00
parent b76a11ae22
commit e221eda36a
35 changed files with 975 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
namespace zooManagerPro.Models;
public partial class AnimalsFeeding
{
public int Id { get; set; }
public int AnimalId { get; set; }
public DateTime FeedingDateTime { get; set; }
public int TypeOfFeedingId { get; set; }
public decimal FeedAmount { get; set; }
public int UnitOfMassId { get; set; }
public int EmployeeId { get; set; }
public string? FeedingDescription { get; set; }
public virtual Animal Animal { get; set; } = null!;
public virtual Employee Employee { get; set; } = null!;
public virtual TypeOfFeeding TypeOfFeeding { get; set; } = null!;
public virtual UnitOfMass UnitOfMass { get; set; } = null!;
}