Example #1
0
 public string ToStringCsv()
 {
     return(string.Concat(Contractor, CommonResources.Separator,
                          Project, CommonResources.Separator,
                          BillingConcept, CommonResources.Separator,
                          Asset, CommonResources.Separator,
                          Type, CommonResources.Separator,
                          Key, CommonResources.Separator,
                          Title, CommonResources.Separator,
                          ImputationDate.ToShortDateString(), CommonResources.Separator,
                          PersonName, CommonResources.Separator,
                          ImputedHours.ToString()));
 }
Example #2
0
 public string ToStringOut()
 {
     return(string.Concat(Contractor, "\t",
                          Project, "\t",
                          "BC:" + BillingConcept, "\t",
                          "Asset:" + Asset, "\t",
                          Type, "\t",
                          Key, "\t",
                          Title, "\t",
                          ImputationDate.ToShortDateString(), "\t",
                          PersonName, "\t",
                          ImputedHours.ToString(), "\t"));
 }
Example #3
0
 public string ToStringIn()
 {
     return(string.Concat(Project, "\t",
                          Type, "\t",
                          Key, "\t",
                          Title, "\t",
                          EpicName, "\t",
                          RelatedProject, "\t",
                          ImputationDate.ToShortDateString(), "\t",
                          PersonName, "\t",
                          ImputedHours.ToString(), "\t",
                          Creator, "\t"
                          ));
 }
Example #4
0
 public override string ToString()
 {
     return(string.Concat(Project, "\t",
                          Type, "\t",
                          Key, "\t",
                          Title, "\t",
                          "BC: " + BillingConcept, "\t ",
                          "Asset: " + Asset, "\t",
                          EpicName, "\t",
                          "RP:" + RelatedProject, "\t",
                          ImputationDate.ToShortDateString(), "\t",
                          PersonName, "\t",
                          ImputedHours.ToString(), "\t",
                          Contractor.ToString() + "\t",
                          Creator, "\t"));
 }