Exemplo n.º 1
0
        public File Create(FileCreateBo bo)
        {
            this._fileLimitDomainService.Check(new CheckFileLimitBo());

            var fileKey = CreateFileKey(bo);

            this._repository.Create(new File());

            throw new NotImplementedException();
        }
Exemplo n.º 2
0
 private string CreateFileKey(FileCreateBo bo)
 {
     throw new NotImplementedException();
 }