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 Microsoft.Azure.Mobile.Server.Tables; | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
using System.ComponentModel.DataAnnotations.Schema; | |
using System.Linq; | |
using System.Web; | |
namespace Ecrumbs.Service.Data | |
{ |
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 Microsoft.WindowsAzure.MobileServices; | |
using System; | |
namespace Ecrumbs.Shared.Models | |
{ | |
public class AzureClientSyncModelBase | |
{ | |
public AzureClientSyncModelBase() | |
{ | |
Id = Guid.NewGuid().ToString(); |
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 Microsoft.WindowsAzure.MobileServices; | |
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Threading.Tasks; | |
namespace Ecrumbs.Shared.Models | |
{ | |
public class ActivityProfile | |
{ |
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 Microsoft.Azure.Mobile.Server; | |
using Microsoft.Azure.Mobile.Server.Tables; | |
using System; | |
using System.ComponentModel.DataAnnotations.Schema; | |
namespace Ecrumbs.Models.DataObjects | |
{ | |
public class ActivityProfileDto : ITableData | |
{ | |
public string AccountId { get; set; } |
NewerOlder