This file contains hidden or 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
XdsServicesDataContext xds = new XdsServicesDataContext(); | |
var query = xds.SXAXDSCustomers.AsEnumerable().OrderBy(c => c.Oid, new OidComparer()) | |
.Select( x => | |
new { | |
Name = x.Name, | |
Oid = x.Oid, | |
UserId = x.UserId, | |
AllowAutoPatientRegistration = x.AllowAutoPatientRegistration, | |
MembershipUsersCollection = Membership.FindUsersByName(x.UserId) |
This file contains hidden or 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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Microsoft.Xna.Framework; | |
using Microsoft.Xna.Framework.Graphics; | |
namespace ArenaGame | |
{ |
This file contains hidden or 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
/// <summary> | |
/// LoadContent will be called once per game and is the place to load | |
/// all of your content. | |
/// </summary> | |
protected override void LoadContent() | |
{ | |
// Create a new SpriteBatch, which can be used to draw textures. | |
spriteBatch = new SpriteBatch(GraphicsDevice); | |
gridTexture = Content.Load<Texture2D>("GridTemplate"); |
NewerOlder