コード例 #1
0
ファイル: FileController.cs プロジェクト: kendarorg/CryptoApp
 public FileController()
 {
     _userSvc = new LoginService();
     _users   = new UserRepository();
     _files   = new FileRepository();
     _crypt   = new StringCipher();
     _attach  = new AttachRepository();
 }