Beispiel #1
0
        public VUController(IRepository repository, IXLSExporter xlsExporter)
        {
            this.repository  = repository;
            this.xlsExporter = xlsExporter;

            StringBuilder comment = new StringBuilder();

            comment = comment.Append("ВКО №   від   , cума:   UAH.");
            comment = comment.AppendLine();
            comment = comment.Append("ВКО №   від   , cума:   USD.");
            this.defaultAccComment = comment.ToString();
        }
Beispiel #2
0
 public ADMController(IRepository repository, IMessenger messenger, IXLSExporter xlsExporter)
 {
     this.repository  = repository;
     this.messenger   = messenger;
     this.xlsExporter = xlsExporter;
 }
Beispiel #3
0
 public WTRController(IRepository repo, IXLSExporter xlsExporter)
     : this()
 {
     this.repository  = repo;
     this.xlsExporter = xlsExporter;
 }