Exemple #1
0
        public virtual int ClearUserTemp(AttachmentInputDto attachmentDto)
        {
            var fileDirectory = Path.Combine(_hostingEnvironment.ContentRootPath, @"FileRoot\Attach\UserTemp\", attachmentDto.BussinessTypeElementCode, _currentUser.LoginName);

            AttachmentHelper.ClearUserTemp(fileDirectory);

            return(1);
        }