unsed refs

main
Paul Schneider 10 years ago
parent 06926d5209
commit 62069d3cd7
6 changed files with 10 additions and 11 deletions

@ -1,9 +1,11 @@
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models;
public class GoogleCloudMobileDeclaration { public class GoogleCloudMobileDeclaration {
public GoogleCloudMobileDeclaration() {
}
public string GCMRegistrationId { get; set; } public string GCMRegistrationId { get; set; }
public string DeviceOwnerId { get; set; } public string DeviceOwnerId { get; set; }
@ -14,7 +16,7 @@ public class GoogleCloudMobileDeclaration {
public string Model { get; set; } public string Model { get; set; }
public string Platform { get; set; } public string Platform { get; set; }
public string Version { get; set; } public string Version { get; set; }
/*
[ForeignKeyAttribute("DeviceOwnerId")] [ForeignKeyAttribute("DeviceOwnerId")]
public virtual ApplicationUser DeviceOwner { get; set; } public virtual ApplicationUser DeviceOwner { get; set; } */
} }

@ -1,7 +1,6 @@
using System; using System;
using Microsoft.Data.Entity; using Microsoft.Data.Entity;
using Microsoft.Data.Entity.Infrastructure; using Microsoft.Data.Entity.Infrastructure;
using Microsoft.Data.Entity.Metadata;
using Microsoft.Data.Entity.Migrations; using Microsoft.Data.Entity.Migrations;
using Yavsc.Models; using Yavsc.Models;

@ -1,5 +1,3 @@
using System;
using System.Collections.Generic;
using Microsoft.Data.Entity.Migrations; using Microsoft.Data.Entity.Migrations;
namespace Yavsc.Migrations namespace Yavsc.Migrations

@ -198,6 +198,8 @@ namespace Yavsc
options.ResourcesPath = "Resources"; options.ResourcesPath = "Resources";
}).AddDataAnnotationsLocalization(); }).AddDataAnnotationsLocalization();
services.AddScoped<LanguageActionFilter>(); services.AddScoped<LanguageActionFilter>();
// Inject ticket formatting // Inject ticket formatting

@ -3,7 +3,6 @@ using System.IO;
using System.Security.Claims; using System.Security.Claims;
using Microsoft.AspNet.Authorization; using Microsoft.AspNet.Authorization;
using Yavsc.Models; using Yavsc.Models;
using Yavsc.Models.Billing;
using Yavsc.Models.Booking; using Yavsc.Models.Booking;
namespace Yavsc { namespace Yavsc {

@ -1,5 +1,4 @@
using System.Collections.Generic;
using Microsoft.Extensions.Primitives;
namespace Yavsc.Models.Auth namespace Yavsc.Models.Auth
{ {

Loading…