예제 #1
0
 public CSubCategory(int subCategoryID, string title, string description, CCategoryType categoryType) : this()
 {
     SubCategoryID = subCategoryID;
     Title         = title;
     Description   = description;
     CategoryType  = categoryType;
 }
예제 #2
0
 public CTarget(DateTime month, string type, decimal amount, CCategoryType categoryType)
 {
     Month        = month;
     Type         = type;
     Amount       = amount;
     CategoryType = categoryType;
 }
예제 #3
0
 public CCategoryType(CCategoryType prototype)
 {
     CategoryID  = prototype.CategoryID;
     Title       = prototype.Title;
     Description = prototype.Description;
 }