/*** CONSTRUCTOR ***/
 public Category(string name, int projectId)
     : this(string.Empty, DefaultValues.GetDurationMinValue(), DefaultValues.GetCategoryIdMinValue(), DefaultValues.GetDurationMinValue(), name, projectId)
 {
 }
 public Category(string abbreviation, decimal estimateDuration, string name, int projectId)
     : this(abbreviation, DefaultValues.GetDurationMinValue(), DefaultValues.GetCategoryIdMinValue(), estimateDuration, name, projectId)
 {
 }
 public Project(string creatorUsername, string description, int id, string managerUserName, string name)
     : this(DefaultValues.GetDurationMinValue(), creatorUsername, DefaultValues.GetDateTimeMinValue(), DefaultValues.GetDateTimeMinValue(), string.Empty, DefaultValues.GetProjectDurationMinValue(), DefaultValues.GetProjectIdMinValue(), managerUserName, name)
 {
 }