[Release 1.0.5-rc20-alpha7]

deploying a batch abstraction
This commit is contained in:
2018-06-17 23:34:17 +02:00
parent e85b012184
commit 854ba3987b
10 changed files with 642 additions and 7 deletions

View File

@ -14,15 +14,28 @@ namespace Yavsc.Server.Models.IT
public string OwnerId { get; set; }
public string LocalRepo { get; set; }
public string Name { get; set; }
public string Version { get; set; }
public string[] Configurations { get; set; }
[ForeignKey("LocalRepo")]
public virtual GitRepositoryReference Repository { get; set; }
List<IBillItem> bill = new List<IBillItem> ();
public void AddBillItem(IBillItem item)
{
bill.Add(item);
}
public override List<IBillItem> GetBillItems()
{
throw new System.NotImplementedException();
return bill;
}
public string Description { get; set; }
public override string GetDescription()
@ -30,6 +43,8 @@ namespace Yavsc.Server.Models.IT
return Description;
}
public Project()
{