This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.msvs.bookshelf.adapters; | |
import android.os.Handler; | |
import android.support.v7.widget.RecyclerView; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.ImageView; | |
import android.widget.TextView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.msvs.bookshelf.retrofit; | |
import com.msvs.bookshelf.events.BookFoundEvent; | |
import com.msvs.bookshelf.model.entities.Author; | |
import com.msvs.bookshelf.model.entities.Book; | |
import com.msvs.bookshelf.model.entities.Category; | |
import com.msvs.bookshelf.retrofit.model.Item; | |
import com.msvs.bookshelf.retrofit.model.QueryResult; | |
import java.util.ArrayList; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.msvs.bookshelf.retrofit; | |
import com.msvs.bookshelf.retrofit.model.QueryResult; | |
import retrofit.Callback; | |
import retrofit.http.GET; | |
import retrofit.http.Query; | |
public class Interfaces { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<layout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
tools:context="com.msvs.bookshelf.fragments.BookDetailsFragment"> | |
<data> | |
<variable | |
name="book" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.msvs.bookshelf.activities; | |
import android.databinding.BindingAdapter; | |
import android.databinding.DataBindingUtil; | |
import android.os.Bundle; | |
import android.support.v7.app.AppCompatActivity; | |
import android.widget.ImageView; | |
import com.msvs.bookshelf.R; | |
import com.msvs.bookshelf.databinding.ActivityBookDetailsActivityDataBindingDemoBinding; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using FileSystem.Data.Interfaces; | |
using FileSystem.Data.Models; | |
using Microsoft.EntityFrameworkCore; | |
using Microsoft.EntityFrameworkCore.Query; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Threading.Tasks; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem $PWD -Filter *.cs -Recurse | | |
Where-Object {$_.FullName -notlike "*\bin\*" -and $_.FullName -notlike "*\obj\*" -and $_.FullName -notlike "*\Migrations\*"} | | |
Foreach-Object{ | |
$content = Get-Content $_.FullName | |
Set-Content $_.FullName -value "#nullable disable", $content | |
} |