Batches
[Release 1.0.5-rc20-alpha7] deploying a batch abstraction
This commit is contained in:
@ -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()
|
||||
{
|
||||
|
||||
|
Reference in New Issue
Block a user