Remove CRM bits

This commit is contained in:
2016-08-25 13:05:31 -04:00
parent a5fcb46e04
commit b57c5ae41c
42 changed files with 0 additions and 1471 deletions
-37
View File
@@ -1,37 +0,0 @@
using System;
using System.Collections.Generic;
namespace InventoryTraker.Web.Core
{
public class Customer
{
public int Id { get; set; }
public string Name { get; set; }
public string WorkEmail { get; set; }
public string HomeEmail { get; set; }
public string WorkPhone { get; set; }
public string HomePhone { get; set; }
public string HomeAddress { get; set; }
public string WorkAddress { get; set; }
public DateTime CreateDate { get; set; }
public DateTime? TerminationDate { get; set; }
public IList<Opportunity> Opportunities { get; set; }
public IList<Risk> Risks { get; set; }
public Customer()
{
CreateDate = DateTime.Today;
}
}
}
-22
View File
@@ -1,22 +0,0 @@
using System;
namespace InventoryTraker.Web.Core
{
public class Opportunity
{
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public DateTime CreateDate { get; set; }
public Customer Customer { get; set; }
public Opportunity()
{
CreateDate = DateTime.Now;
}
}
}
-22
View File
@@ -1,22 +0,0 @@
using System;
namespace InventoryTraker.Web.Core
{
public class Risk
{
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public DateTime CreateDate { get; set; }
public Customer Customer { get; set; }
public Risk()
{
CreateDate = DateTime.Today;
}
}
}