public UserService()
 {
     this.context = new FinalDbContext();
 }
        //************************************************************************************************************************
        public UserService(IEncryptor encryptor)
        {
            this.encryptor = encryptor;

            this.context = new FinalDbContext();
        }
 //*****************************************************************************************************************
 public PostServices()
 {
     this.context = new FinalDbContext();
 }