Exemplo n.º 1
0
 public void Insert(RoleDto item)
 {
   using (var ctx = ObjectContextManager<PTrackerEntities>.GetManager("PTrackerEntities"))
   {
     var newItem = new Role 
     { 
       Name = item.Name
     };
     ctx.ObjectContext.AddToRoles(newItem);
     ctx.ObjectContext.SaveChanges();
     item.Id = newItem.Id;
     item.LastChanged = newItem.LastChanged;
   }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Create a new Role object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="lastChanged">Initial value of the LastChanged property.</param>
 public static Role CreateRole(global::System.Int32 id, global::System.String name, global::System.Byte[] lastChanged)
 {
     Role role = new Role();
     role.Id = id;
     role.Name = name;
     role.LastChanged = lastChanged;
     return role;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Roles EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToRoles(Role role)
 {
     base.AddObject("Roles", role);
 }