Skip to content

Instantly share code, notes, and snippets.

View FredrikBitio's full-sized avatar

Fredrik Norberg FredrikBitio

  • Bitio Development AB
  • Stockholm, Sweden
View GitHub Profile
public class backendKlass
{
public static Users[] getUsers()
{
using (entity db = new entity())
{
Users[] list = db.getUsers(); /* stored procedure i db */
list = formatUsers(list);
return list;
}