Guest User

Untitled

a guest
Jun 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.95 KB | None | 0 0
  1. using System;
  2. using System.Net;
  3. using System.Windows;
  4. using System.Windows.Controls;
  5. using System.Windows.Documents;
  6. using System.Windows.Ink;
  7. using System.Windows.Input;
  8. using System.Windows.Media;
  9. using System.Windows.Media.Animation;
  10. using System.Windows.Shapes;
  11. using Microsoft.Practices.Prism.ViewModel;
  12. using System.Data.Linq.Mapping;
  13.  
  14. namespace Bick.Budget.Entities.Categories
  15. {
  16.     [Table(Name = "Categories")]
  17.     public class Category : NotificationObject
  18.     {
  19.  
  20.         private Guid id;
  21.         private int name;
  22.         private double amount;
  23.         private DateTime dateAdded;
  24.         private System.DateTime? dateCompleted;
  25.         private System.DateTime? datePlanned;
  26.  
  27.         public Guid ID
  28.         {
  29.             get
  30.             {
  31.                 throw new System.NotImplementedException();
  32.             }
  33.             set
  34.             {
  35.             }
  36.         }
  37.  
  38.         public int Name
  39.         {
  40.             get
  41.             {
  42.                 throw new System.NotImplementedException();
  43.             }
  44.             set
  45.             {
  46.             }
  47.         }
  48.  
  49.         public double Amount
  50.         {
  51.             get
  52.             {
  53.                 throw new System.NotImplementedException();
  54.             }
  55.             set
  56.             {
  57.             }
  58.         }
  59.  
  60.         public DateTime DateAdded
  61.         {
  62.             get
  63.             {
  64.                 throw new System.NotImplementedException();
  65.             }
  66.             set
  67.             {
  68.             }
  69.         }
  70.  
  71.         public System.DateTime? DateCompleted
  72.         {
  73.             get
  74.             {
  75.                 throw new System.NotImplementedException();
  76.             }
  77.             set
  78.             {
  79.             }
  80.         }
  81.  
  82.         public System.DateTime? DatePlanned
  83.         {
  84.             get
  85.             {
  86.                 throw new System.NotImplementedException();
  87.             }
  88.             set
  89.             {
  90.             }
  91.         }
  92.     }
  93. }
Add Comment
Please, Sign In to add comment