Batches
[Release 1.0.5-rc20-alpha7] deploying a batch abstraction
This commit is contained in:
parent
64d49c661d
commit
aeebf8bea9
10 changed files with 642 additions and 7 deletions
|
|
@ -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()
|
||||
{
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue