You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
546 B
23 lines
546 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CK.SCP.Models;
|
|
|
|
|
|
namespace CK.SCP.Controller
|
|
{
|
|
public class ShipController
|
|
{
|
|
public static void DeleteById(int id)
|
|
{
|
|
using (ScpEntities db = EntitiesFactory.CreateScpInstance())
|
|
{
|
|
var asn = db.TF_ASN.SingleOrDefault(p => p.UID == id);
|
|
if (asn != null) db.TF_ASN.Remove(asn);
|
|
db.SaveChanges();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|