Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Module] #282

Closed
jallal1362 opened this issue Jan 2, 2025 · 3 comments
Closed

[Module] #282

jallal1362 opened this issue Jan 2, 2025 · 3 comments
Labels
invalid This doesn't seem right

Comments

@jallal1362
Copy link

No description provided.

Copy link

github-actions bot commented Jan 2, 2025

Hey @jallal1362,

your module submission is invalid. A valid submission title must match the pattern ^\[[mM]odule\][[:space:]]*([a-zA-Z][a-zA-Z0-9._-]+)$ (e.g., [Module] my-module), otherwise your module can't added.
Please update your submission title and try again.

Best regards,
The MMAR Team

@github-actions github-actions bot added the invalid This doesn't seem right label Jan 2, 2025
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Jan 2, 2025
@jallal1362
Copy link
Author

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace shard
{
class Access
{
#region StoredProcedures
public static object ActivCurrent(Int64 a)
{
AryaBankDataContext dc = new AryaBankDataContext();
return dc.p_active_saving(a);
}

	public static object ActivSaving(Int64 a)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.p_active_saving(a);
	}
	
	public static object getrequstCheque(long i, long f)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.p_Request_cheque(i, f);
	}
	public static object getmove2current(long i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.p_move2Current(i);
	}
	public static object getmove2saving(long i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.p_move2Saving(i);
	}

	public static object getmove2shorttime(long i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.p_move2ShortTime(i);
	}
	public static object mojodiCurrent(long i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.p_mojodi_current (i);
	}
	public static object mojodiSaving(long i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.p_mojodi_Saving (i);
	}
	public static object closelong(long acount, int sw)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.P_close(sw, acount);

	}
        
	public static object getIDshorttime(long i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.getIdshorttime (i);
	}
	public static object getIDcurrent(long i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.getIdcurrent (i);
	}
	public static object getIDSaving (long  i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.getIdsaving (i);
	}
	public static object getIDlongtime(long i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.getIdlongtime(i);
	}
	public static object gtIDcustomer(long? i)
	{
		AryaBankDataContext dc = new AryaBankDataContext();
		return dc.GTIdCustomer(i);
		}

	#endregion





}

}

@DerGoogler
Copy link
Member

DerGoogler commented Jan 3, 2025

Stop that or we'll take further actions against those spam submissions!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
invalid This doesn't seem right
Projects
None yet
Development

No branches or pull requests

2 participants