示例#1
0
        public File Create(FileCreateBo bo)
        {
            this._fileLimitDomainService.Check(new CheckFileLimitBo());

            var fileKey = CreateFileKey(bo);

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

            throw new NotImplementedException();
        }
示例#2
0
 private string CreateFileKey(FileCreateBo bo)
 {
     throw new NotImplementedException();
 }